即使在将应用程序路由定义为“ / hello”之后,localhost中的Python输出

时间:2018-07-31 12:41:37

标签: python flask

这是代码:-

from flask import Flask
app= Flask(__name__)

@app.route('/hello')
def hello_world() :
    return 'hello World'

app.add_url_rule('/','hello','hello_world')
if __name__== '__main__': 
    app.run(debug=True)

请查看您是否可以找到错误,请在答案中输入正确的代码

1 个答案:

答案 0 :(得分:0)

请参阅有关add_url_rule的文档,必需的方法名称,您将以字符串格式提供

 'hello_world', hello_world 

from flask import Flask
app= Flask(__name__)


@app.route('/hello')
def hello_world():
    return 'hello World'

app.add_url_rule('/','hello', hello_world)

if __name__== '__main__':
    app.run(debug=True)