Crie URLs com url_for
Gere links a partir dos nomes dos endpoints, não de caminhos fixos.
Crie URLs com url_for é uma aula grátis de Flask Academy no CoddyKit. Esta é a aula 3 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de Flask Academy, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de Flask Academy inclui 4 aulas no total.
Partes desta aula ainda não foram traduzidas e aparecem em inglês.
Hardcoded URLs Are Fragile
Typing "/user/alice" by hand breaks the day you rename a route. Flask offers url_for to build links from your view names instead.
Build by Endpoint Name
url_for takes the view function name and returns its path. Change the route string later and every generated link updates automatically. 🔗
from flask import url_for
url_for('home')The Endpoint Is the Function Name
By default the endpoint is the view function's name, not its URL path. So def home() is referenced as url_for('home').
@app.route('/')
def home():
return 'Hi'Pass Dynamic Values
For routes with captured parts, supply them as keyword arguments. url_for drops each value into the matching angle-bracket slot.
url_for('profile', name='alice')
# -> '/user/alice'Extra Args Become Query Strings
Arguments that do not fit a route slot are added as a query string. So passing page=2 appends ?page=2 to the generated URL.
url_for('search', q='cats', page=2)
# -> '/search?q=cats&page=2'Use It Inside Templates
Templates call url_for too, so your HTML links never go stale. It is the standard way to write hrefs in Jinja2 pages.
<a href="{{ url_for('home') }}">Home</a>Refactor Without Fear
Because links derive from endpoint names, you can rename a URL path freely. Every url_for call keeps working, so refactors stay safe.
Redirect Pairs Well with It
Combine url_for with redirect to send users to a named view. You get a clean, refactor-proof redirect without writing the path by hand.
from flask import redirect
redirect(url_for('home'))Absolute URLs When Needed
Pass _external=True to get a full http://host/path link. This is handy for emails or anywhere a relative path will not do.
url_for('home', _external=True)It Knows the static Folder
url_for also builds links to assets via the static endpoint. That keeps CSS and image paths correct even if your app mounts elsewhere.
url_for('static', filename='app.css')A Habit Worth Forming
Make url_for your default for every internal link. Hardcoded strings creep in and rot; generated URLs stay correct as your app evolves.
Quick Check
You call url_for('profile', name='alice', page=2). Where does page=2 end up?
Recap: You Built URLs Smartly
url_for turns endpoint names into paths, fills route variables, and tacks extras onto the query string. Next: trailing slashes. 🧩
Perguntas Frequentes
A aula “Crie URLs com url_for” é grátis?
Sim — o texto completo de “Crie URLs com url_for” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de Flask Academy, atualize para CoddyKit PRO. O curso de Flask Academy inclui 4 aulas no total.
O que vou aprender em “Crie URLs com url_for”?
Gere links a partir dos nomes dos endpoints, não de caminhos fixos. Você pratica Flask Academy com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.
Preciso ter experiência prévia para começar Flask Academy?
Nenhuma experiência prévia é necessária. Flask Academy no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 3 de 4.
Quanto tempo leva a aula “Crie URLs com url_for”?
A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.
Posso escrever e executar código nesta aula de Flask Academy?
Sim. Cada aula de Flask Academy inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.
Todas as aulas deste curso
- Capture variáveis do caminho
- Conversores de tipo: int, float, string, path
- Crie URLs com url_for
- Barras finais e comportamento de redirecionamento