【Python】Bottle框架下Python Web开发的跨域访问
上一篇文章中介绍了Python应用Bottle轻量级框架进行Web开发,这次介绍Bottle框架下的跨域访问的问题。 当前台跨域访问时,会无法从后台得到数据,也就是说跨域访问失败。解决办法如下:在程序中定义一个函数代码如下:#!/usr/bin/python# -*- conding:utf-8 -*-from bottle import *#deco
·
上一篇文章中介绍了Python应用Bottle轻量级框架进行Web开发,这次介绍Bottle框架下的跨域访问的问题。
当前台跨域访问时,会无法从后台得到数据,也就是说跨域访问失败。
解决办法如下:
在程序中定义一个函数代码如下:
#!/usr/bin/python
# -*- conding:utf-8 -*-
from bottle import *
#decorator
def allow_cross_domain(fn):
def _enable_cors(*args, **kwargs):
#set cross headers
response.headers['Access-Control-Allow-Origin'] = '*'
response.headers['Access-Control-Allow-Methods'] = 'GET,POST,PUT,OPTIONS'
allow_headers = 'Referer, Accept, Origin, User-Agent'
response.headers['Access-Control-Allow-Headers'] = allow_headers
if bottle.request.method != 'OPTIONS':
# actual request; reply with the actual response
return fn(*args, **kwargs)
return _enable_cors
@route('/helloworld/:yourwords', methods=['GET', 'POST'])
@allow_cross_domain #在此处加上定义的函数
def hello(yourwords):
return 'hello world. ' + yourwords
run(host='0.0.0.0', port=8080)
希望对大家有所帮助。谢谢。
更多推荐
已为社区贡献3条内容
所有评论(0)