Flask tutorial - 404 Not Found

后端 未结 2 825
你的背包
你的背包 2021-01-11 13:51

I just finished the Flask basic tutorial (here) and even though I\'ve done completed every step, when I am trying

python flaskr.py

what I get

2条回答
  •  遥遥无期
    2021-01-11 14:27

    Happened to me also while following Flask Application Setup here . The error was gone after appending a trailing slash at the end of the route.

    @app.route('/hello')
        def hello():
            return 'Hello, World!'
    

    was changed to

    @app.route('/hello/')
        def hello():
            return 'Hello, World!'
    

    and the problem was solved. Hope it helps for anyone who is searching for a problem like this.

提交回复
热议问题