gpt4 book ai didi

python - flask - 404 未找到

转载 作者:行者123 更新时间:2023-11-28 21:38:41 24 4
gpt4 key购买 nike

我是 flask 开发的新手,这是我在 flask 中的第一个程序,但它向我显示了这个错误:

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

&这是我的代码

from flask import Flask

app = Flask(__name__)


@app.route('/index')
def index():
return 'Hello World'


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

最佳答案

我认为你应该去 http://localhost:5000/indexhttp://127.0.0.1:5000/index但是如果你想制作那个页面,你的代码应该是这样的

from flask import Flask

app = Flask(__name__)


@app.route('/')
def index():
return 'Hello World'


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

@app.route('/index') 更改为 @app.route('/') 你也应该检查这个 http://flask.pocoo.org/docs/0.12/quickstart/#routing

关于python - flask - 404 未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47953621/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com