Flask 路由经常使用附加到 URL 的唯一标识符,就像这样的情况作为“landingpageA”、“landingpageB”和“landingpageC”。如何从相应的 Flask 路由函数中访问这些唯一标识符?
Flask 提供对变量 URL 的支持,允许开发人员从请求 URL 捕获动态值。为了实现这一点,您可以使用
使用变量 URL,您可以访问如下所示的唯一标识符:
@app.route('/landingpage<id>') # /landingpageA def landing_page(id): # Here, 'id' will contain the unique identifier from the URL.
通常,路径分隔符如 '/ ' 用于分隔 URL 组件,从而产生以下路由定义:
@app.route('/landingpage/<id>') # /landingpage/A def landing_page(id): # Again, 'id' will capture the unique identifier portion of the URL.
可以使用 url_for 来生成具有唯一标识符的 URL:
url_for('landing_page',>
另一种方法是传递标识符作为查询字符串的一部分并从请求对象中检索它。但是,当始终需要标识符时,通常首选使用变量 URL。
以下是使用查询参数的示例:
from flask import request @app.route('/landingpage') def landing_page(): id = request.args['id'] # Here, 'id' will be extracted from the query parameter. # Example URL: /landingpage?id=A
以上是如何从 Flask 路由 URL 中捕获唯一标识符?的详细内容。更多信息请关注PHP中文网其他相关文章!