So I have a method that is accessible by multiple routes:
@app.route("/canonical/path/")
@app.route("/alternate/path/")
def foo():
return "hi!"
Now, how can I call url_for("foo") and know that I will get the first route?
|
So I have a method that is accessible by multiple routes:
Now, how can I call |
|||
|
|
|
Ok. It took some delving into the
will produce
There is a drawback of this approach. Flask always binds the last defined route to the endpoint defined implicitly (
|
|||||||||
|
|
Rules in Flask are unique. If you define the absolute same URL to the same function it will by default clash because you're doing something which we stop you from doing since from our perspective that is wrong. There is one reason why you would want to have more than one URL to the absolute same endpoint and that is backwards compatibility with a rule that existed in the past. Since WZ0.8 and Flask 0.8 you can explicitly specify an alias for a route:
In this case if the user requests That does not mean a function could not be bound to more than one url though, but in this case you would need to change the endpoint:
Or alternatively:
In this case you can define a view a second time under a different name. However this is something you generally want to avoid because then the view function would have to check request.endpoint to see what is called. Instead better do something like this:
In both of these cases URL generation is You can also do this on the routing system level:
In this case url generation is |
|||
|
|