我正在尝试使用sanic and jinja的示例将一个简单的flask应用程序移植为sanic。
sanic是否具有flask的url_for()
函数?
最佳答案
更新: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
关于python-3.x - Sanic是否具有 'url_for()'函数(例如在 flask 中)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41339970/