女服务员启动时未找到页面

Not Found page when waitress start

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

密码是:

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,请检查您的拼写并重试。

您需要一个 url 处理程序:

@app.route('/') 
def index():
    return "hello"