Flask中endpoint的理解(小结)


Posted in Python onDecember 11, 2019

在flask框架中,我们经常会遇到endpoint这个东西,最开始也没法理解这个到底是做什么的。最近正好在研究Flask的源码,也就顺带了解了一下这个endpoint

首先,我们看一个例子:

@app.route('/user/<name>')
def user(name):
  return 'Hello, %s' % name

这个是我们在用flask框架写网站中最常用的。

通过看源码,我们可以发现:

函数等效于

def user(name)
  return 'Hello, %s' % name
  
app.add_url_rule('/user/<name>', 'user', user)

这个add_url_rule函数在文档中是这样解释的:

add_url_rule(*args, **kwargs)
 Connects a URL rule. Works exactly like the route() decorator. If a view_func is provided it will be registered with the endpoint.

add_url_rule有如下参数:

rule ? the URL rule as string
endpoint ? the endpoint for the registered URL rule. Flask itself assumes the name of the view function as endpoint
view_func ? the function to call when serving a request to the provided endpoint
options ? the options to be forwarded to the underlying Rule object. A change to Werkzeug is handling of method options. methods is a list of methods this rule should be limited to (GET, POST etc.). By default a rule just listens for GET (and implicitly HEAD). Starting with Flask 0.6, OPTIONS is implicitly added and handled by the standard request handling.

抛开options这个参数不谈,我们看看前三个参数。
rule:这个参数很简单,就是匹配的路由地址
view_func:这个参数就是我们写的视图函数
endpoint:这个参数就是我今天重点要讲的,endpoint

很多人认为:假设用户访问http://www.example.com/user/eric,flask会找到该函数,并传递name='eric',执行这个函数并返回值。

但是实际中,Flask真的是直接根据路由查询视图函数么?

在源码中我们可以发现:

  • 每个应用程序app都有一个view_functions,这是一个字典,存储endpoint-view_func键值对。add_url_rule的第一个作用就是向view_functions中添加键值对(这件事在应用程序run之前就做好了)
  • 每个应用程序app都有一个url_map,它是一个Map类(具体实现在werkzeug/routing.py中),里面包含了一个列表,列表元素是Role的实例(werkzeug/routing.py中)。add_url_rule的第二个作用就是向url_map中添加Role的实例(它也是在应用程序run之前就做好了)

我们可以通过一个例子来看:

app = Flask(__name__)

@app.route('/test', endpoint='Test')
def test():
  pass


@app.route('/', endpoint='index')
def hello_world():
  return 'Hello World!'

if __name__ == '__main__':
  print(app.view_functions)
  print(app.url_map)
  app.run()

运行这个程序,结果是:

{'static': <bound method Flask.send_static_file of <Flask 'flask-code'>>, 'Test': <function test at 0x10065e488>, 'index': <function hello_world at 0x10323d488>}
Map([<Rule '/test' (HEAD, OPTIONS, GET) -> Test>,
 <Rule '/' (HEAD, OPTIONS, GET) -> index>,
 <Rule '/static/<filename>' (HEAD, OPTIONS, GET) -> static>])
 * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)

所以我们可以看出:这个url_map存储的是url与endpoint的映射!

回到flask接受用户请求地址并查询函数的问题。实际上,当请求传来一个url的时候,会先通过rule找到endpoint(url_map),然后再根据endpoint再找到对应的view_func(view_functions)。通常,endpoint的名字都和视图函数名一样。

这时候,这个endpoint也就好理解了:

实际上这个endpoint就是一个Identifier,每个视图函数都有一个endpoint,

当有请求来到的时候,用它来知道到底使用哪一个视图函数

在实际应用中,当我们需要在一个视图中跳转到另一个视图中的时候,我们经常会使用url_for(endpoint)去查询视图,而不是把地址硬编码到函数中。

这个时候,我们就不能使用视图函数名当endpoint去查询了

我们举个例子来说明。比如:

app = Flask(__name__)
app.register_blueprint(user, url_prefix='user')
app.register_blueprint(file, url_prefix='file')

我们注册了2个蓝图。

在user中(省略初始化过程):

@user.route('/article')
def article():
  pass

在file中(省略初始化过程):

@file.route('/article')
def article():
  pass

这时候,我们发现,/article这个路由对应了两个函数名一样的函数,分别在两个蓝图中。当我们使用url_for(article)调用的时候(注意,url_for是通过endpoint查询url地址,然后找视图函数),flask无法知道到底使用哪个蓝图下的endpoint,所以我们需要这样:

url_for('user.article')

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python统计文件中去重后uuid个数的方法
Jul 30 Python
CentOS 6.X系统下升级Python2.6到Python2.7 的方法
Oct 12 Python
Python将多份excel表格整理成一份表格
Jan 03 Python
python查看模块,对象的函数方法
Oct 16 Python
python 返回列表中某个值的索引方法
Nov 07 Python
在win10和linux上分别安装Python虚拟环境的方法步骤
May 09 Python
基于Python实现船舶的MMSI的获取(推荐)
Oct 21 Python
使用pytorch实现可视化中间层的结果
Dec 30 Python
django模型动态修改参数,增加 filter 字段的方式
Mar 16 Python
python 实现 hive中类似 lateral view explode的功能示例
May 18 Python
浅谈Tensorflow加载Vgg预训练模型的几个注意事项
May 26 Python
python通过函数名调用函数的几种场景
Sep 23 Python
Python中Flask-RESTful编写API接口(小白入门)
Dec 11 #Python
Python zip函数打包元素实例解析
Dec 11 #Python
基于Python实现扑克牌面试题
Dec 11 #Python
Python如何使用argparse模块处理命令行参数
Dec 11 #Python
opencv3/C++ 平面对象识别&amp;透视变换方式
Dec 11 #Python
Python Lambda函数使用总结详解
Dec 11 #Python
Python迭代器模块itertools使用原理解析
Dec 11 #Python
You might like
PHP图片库imagemagick安装方法
2014/09/23 PHP
PHP使用pcntl_fork实现多进程下载图片的方法
2014/12/16 PHP
JavaScript Base64编码和解码,实现URL参数传递。
2006/09/18 Javascript
JS中typeof与instanceof之间的区别总结
2013/11/14 Javascript
jQuery简单实现banner图片切换
2014/01/02 Javascript
jquery删除ID为sNews的tr元素的内容
2014/04/10 Javascript
自己用jQuery写了一个图片的马赛克消失效果
2014/05/04 Javascript
使用时间戳解决ie缓存的问题
2014/08/20 Javascript
JavaScript实现带箭头标识的多级下拉菜单效果
2015/08/27 Javascript
JS实现“隐藏与显示”功能(多种方法)
2016/11/24 Javascript
jQuery Plupload上传插件的使用
2017/04/19 jQuery
详解Vue使用 vue-cli 搭建项目
2017/04/20 Javascript
浅谈JS对html标签的属性的干预以及对CSS样式表属性的干预
2017/06/25 Javascript
浅谈事件冒泡、事件委托、jQuery元素节点操作、滚轮事件与函数节流
2017/07/22 jQuery
JS实现的加减乘除四则运算计算器示例
2017/08/09 Javascript
vue 使用ref 让父组件调用子组件的方法
2018/02/08 Javascript
详解vue项目打包后通过百度的BAE发布到网上的流程
2018/03/05 Javascript
js编写简易的计算器
2020/07/29 Javascript
vue 组件简介
2020/07/31 Javascript
node.js 基于 STMP 协议和 EWS 协议发送邮件
2021/02/14 Javascript
[01:33]PWL开团时刻DAY2-开雾与反开雾
2020/10/31 DOTA
python制作一个桌面便签软件
2015/08/09 Python
Saltstack快速入门简单汇总
2016/03/01 Python
Python实现二维曲线拟合的方法
2018/12/29 Python
详解Python3注释知识点
2019/02/19 Python
postman传递当前时间戳实例详解
2019/09/14 Python
Python datetime 格式化 明天,昨天实例
2020/03/02 Python
Python批量处理csv并保存过程解析
2020/05/16 Python
python实现自动打卡的示例代码
2020/10/10 Python
css3 transform过渡抖动问题解决
2020/10/23 HTML / CSS
中文专业毕业生自荐信
2013/10/28 职场文书
IT工程师岗位职责
2014/07/04 职场文书
2015年医院工作总结范文
2015/04/09 职场文书
学习商务礼仪心得体会
2016/01/22 职场文书
如何使用Maxwell实时同步mysql数据
2021/04/08 MySQL
Python如何解决secure_filename对中文不支持问题
2021/07/16 Python