如何在带有烧瓶的url中使用变量

时间:2017-08-11 19:06:26

标签: python-3.x flask

我正在关注youtube的一个名为' thenewboston'的人。 https://www.youtube.com/watch?v=27Fjrlx4s-o&index=2&list=PL6gx4Cwl9DGDi9F_slcQK7knjtO8TUvUs 以下是我正在使用的代码。

from flask import Flask

app = Flask(__name__)

# @ signifies a decorator - way to wrap a function and modifying its behavior
@app.route('/')
def index():
    return "this is the homepage"


@app.route('/tuna')
def tuna():
    return '<h2> tuna is good</h2>'


@app.route('/profile/<username>')
def profile():
     return "hey there %s" % username

if __name__ == "__main__":
    app.run()

当我去的时候 http://127.0.0.1:5000/profile/bucky 我收到以下错误

内部服务器错误

服务器遇到内部错误,无法完成您的请求。服务器过载或应用程序出错。

0 个答案:

没有答案