0

使用女服务员启动烧瓶服务器后访问默认页面时出现此错误。

代码是:

from app import app
from waitress import serves

if __name__ == '__main__':
     serves (app, host = "0.0.0.0", port = 8080)

http://localhost:8080在浏览器中访问页面

错误: 未找到 在服务器上未找到请求的 URL。如果您手动输入了 URL,请检查您的拼写并重试。

4

1 回答 1

0

您需要一个 url 处理程序:

@app.route('/') 
def index():
    return "hello"
于 2020-08-06T16:40:56.260 回答