我想知道使用url_for
在模板和应用程序代码中生成链接的原因。
我这样做有什么好处:
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
还有这个:
<ul>
<li><a href="{{ url_for('index') }}">Home</a></li>
<li><a href="{{ url_for('about') }}">About Us</a></li>
<li><a href="{{ url_for('contact') }}">Contact</a></li>
</ul>
而不是硬编码路径?