Flask中的 route()装饰器用于将URL绑定到函数。如-
@app.route(‘/hello') def hello_world(): return ‘hello world'
在这里,URL "/hello" 规则绑定到 hello_world()函数。如果访问 http://localhost:5000/hello URL,则 hello_world()函数的输出将在浏览器中呈现。
应用程序对象的 add_url_rule()函数也可用于将URL与一个函数绑定,如上示例所示,使用 route()。
装饰的目的还可以通过以下实现:
def hello_world(): return ‘hello world' app.add_url_rule(‘/', ‘hello', hello_world)