Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialyahyaalshwaily2
Python Development Techdegree Graduate 20,049 PointsDoes url_for('save') refers to the route or the view/function?
The answer will be appreciated, thank you!
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Yahya Alshwaily! It refers to the name of the function defined in the app. For example:
@app.route('/')
def index():
return 'index'
The route is '/'
but the function is named index
inside that route, so you would need to do url_for('index')
. If we had done:
@app.route('/')
def whatever():
return 'index'
Then we'd use url_for('whatever')
.
Hope this helps!
yahyaalshwaily2
Python Development Techdegree Graduate 20,049 Pointsyahyaalshwaily2
Python Development Techdegree Graduate 20,049 PointsThat answers my question, thank you Jennifer Nordell !