Sanic是否具有'url_for()'功能(如烧瓶中)?

时间:2016-12-27 06:16:00

标签: python-3.x python-asyncio sanic

我正在尝试将一个简单的烧瓶应用移植到sanic,使用sanic and jinja的示例。

sanic是否有url_for()功能,如烧瓶?

2 个答案:

答案 0 :(得分:7)

更新:Sanic 0.3.1增加了对url_for()的支持:

url = app.url_for('post_handler', post_id=5, arg_one='one', arg_two='two')

号。目前,sanic的路由器非常基础,不支持查找。您可以在此处查看简短的源代码:https://github.com/channelcat/sanic/blob/master/sanic/router.py

答案 1 :(得分:2)

现在是sanic支持url_for方法

resource code