尽管通过了文档和教程,但我无法弄清楚看似微不足道的问题。继续咳嗽:
builtins.ValueError
ValueError: View function did not return a response
每当我尝试渲染我的模板时。使用PyCharm作为编辑器,不会发出任何问题的警告。
website.py:
from flask import Flask, url_for, request, render_template
app = Flask(__name__, template_folder='templates')
@app.route('/')
def hello_world():
render_template('hello_world.html')
if __name__ == '__main__':
app.debug = True
app.run()
hello_world.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello, Flask</title>
</head>
<body>
<h1>Hello, World and Flask!</h1>
</body>
</html>
答案 0 :(得分:2)
当然应该
@app.route('/')
def hello_world():
return render_template('hello_world.html')
插入render_template时忽略了'return'。
答案 1 :(得分:1)
您需要优化hello_world
方法:
return render_template(...)
您所看到的错误有点暗示。 Flask期待一个返回值,而不会看到任何东西。