出于某种原因,每当我添加 url_for() 时,都会在 index.html 文件中检测到错误。无论我将函数添加到仅 index.html、仅 more.html 还是两者,都会发生这种情况。
不过,More.html 似乎可以毫无问题地接受该功能。
该代码仅适用于第二种方法。一旦将 url_for() 添加到代码中,我就无法让第一种方法工作。
应用程序.py:
import datetime
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
now = datetime.datetime.now()
new_year = now.month == 1 and now.day == 1
return render_template("index.html", new_year=new_year)
@app.route('/<string:name>')
def more(name):
name = name.capitalize()
defaultNames = ["Albert", "Michelle", "Ivette", "Sylvia"]
return render_template("more.html", name=name, defaultNames=defaultNames)
索引.html:
<!DOCTYPE html>
<html>
<head>
<title>Python Tutorial</title>
</head>
<body>
{% if new_year %}
<h1>It's NEW year's</h1>
{% else %}
<h1>NOT NEW YEAR'S</h1>
{% endif %}
<a href="{{ url_for('more') }}">names page</a>
</body>
</html>
更多.html:
<!DOCTYPE html>
<html>
<head>
<title>names page</title>
</head>
<body>
<h1>hello, {{name}}!</h1>
<ul>
{% for name in defaultNames %}
<li>{{ name }}</li>
{% endfor %}
</ul>
<a href="{{ url_for('index') }}">Go back</a>
</body>
</html>
每当我尝试使用 url_for() 函数运行代码时,我都会看到“内部服务器错误”。第二种方法虽然效果很好。