forked from orbit-oss/flask
parent
a9726c43ac
commit
065afe53a6
1 changed files with 4 additions and 4 deletions
|
|
@ -153,12 +153,12 @@ rule with ``<converter:variable_name>``. Here are some nice examples::
|
||||||
@app.route('/user/<username>')
|
@app.route('/user/<username>')
|
||||||
def show_user_profile(username):
|
def show_user_profile(username):
|
||||||
# show the user profile for that user
|
# show the user profile for that user
|
||||||
pass
|
return 'User %s' % username
|
||||||
|
|
||||||
@app.route('/post/<int:post_id>')
|
@app.route('/post/<int:post_id>')
|
||||||
def show_post(post_id):
|
def show_post(post_id):
|
||||||
# show the post with the given id, the id is an integer
|
# show the post with the given id, the id is an integer
|
||||||
pass
|
return 'Post %d' % post_id
|
||||||
|
|
||||||
The following converters exist:
|
The following converters exist:
|
||||||
|
|
||||||
|
|
@ -178,11 +178,11 @@ The following converters exist:
|
||||||
|
|
||||||
@app.route('/projects/')
|
@app.route('/projects/')
|
||||||
def projects():
|
def projects():
|
||||||
pass
|
return 'The project page'
|
||||||
|
|
||||||
@app.route('/about')
|
@app.route('/about')
|
||||||
def about():
|
def about():
|
||||||
pass
|
return 'The about page'
|
||||||
|
|
||||||
They look rather similar, the difference is the trailing slash in the
|
They look rather similar, the difference is the trailing slash in the
|
||||||
URL *definition*. In the first case, the canonical URL for the
|
URL *definition*. In the first case, the canonical URL for the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue