2
@app.route('/this/is/the/url')
def some_exposed_func():
    return render_template("data.html")

some_exposed_funcハンドルから '/this/is/the/url' を取得するには?

print 'The func URL is: %s' % get_flask_route_url(some_exposed_func)
4

1 に答える 1

6

私の自己を見つけました:url_for()が答えです

于 2012-11-19T22:32:41.183 に答える