我有一个调用函数来获取响应的视图。但是,它给出了错误View function did not return a response
。我该如何解决?
from flask import Flask
app = Flask(__name__)
def hello_world():
return 'test'
@app.route('/hello', methods=['GET', 'POST'])
def hello():
hello_world()
if __name__ == '__main__':
app.run(debug=True)
当我尝试通过添加静态值而不是调用函数来测试它时,它可以工作。
@app.route('/hello', methods=['GET', 'POST'])
def hello():
return "test"