gpt4 book ai didi

python - Flask 对代码更改没有反应

转载 作者:太空宇宙 更新时间:2023-11-03 12:41:20 25 4
gpt4 key购买 nike

我是 Flask 新手,正在实现一个小型应用程序。我成功地让它在访问某个网页时显示“Hello World”,但即使我更改代码也无法将其更改为“Hello World Again”。为什么它仍在运行旧代码,我怎样才能让它运行新代码?谢谢。

最佳答案

您需要run the app in debug mode :

app.debug = True
app.run()

app.run(debug=True)

但请记住,只在您的开发环境中这样做:

Even though the interactive debugger does not work in forking environments (which makes it nearly impossible to use on production servers), it still allows the execution of arbitrary code. This makes it a major security risk and therefore it must never be used on production machines.

您也可以在不启用 Debug模式的情况下使用 use_reloader=True,但这不是一个好主意,因为您确实需要在开发期间使用调试器。

关于python - Flask 对代码更改没有反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11353691/

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