码迷,mamicode.com
首页 > Web开发 > 详细

flask源码 -- url_for

时间:2017-03-08 15:31:38      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:用法   color   ret   函数   cti   param   ack   code   turn   

 

def url_for(endpoint, **values):
    """Generates a URL to the given endpoint with the method provided.     为一个给出的带有方法的endpoint生成一个url

    :param endpoint: the endpoint of the URL (name of the function)     endpoint: 就是视图函数的名字  
    :param values: the variable arguments of the URL rule               values:   不同参数(字典)
    """ 
    return _request_ctx_stack.top.url_adapter.build(endpoint, values)   待解决难点:栈 

 

url用法示例 

url_for(‘static‘, filename=‘favicon.ico‘)

flask源码 -- url_for

标签:用法   color   ret   函数   cti   param   ack   code   turn   

原文地址:http://www.cnblogs.com/huangke/p/6519645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!