这篇文章主要介绍了关于python的bottle框架跨域请求报错问题的处理方法,需要的朋友可以参考下
在用python的bottle框架开发时,前端使用ajax跨域访问时,js代码老是进入不了success,而是进入了error,而返回的状态却是200。url直接在浏览器访问也是正常的,浏览器按f12后会发现下面这个错误提示
xmlhttprequest cannot load http://192.168.0.118:8081/get_mobile_number/?access-control-allow-origin’ header is present on the requested resource. origin ‘null’ is therefore not allowed access.
通过搜索引擎查询错误,会发现几乎查找出来的答案都说是跨域问题,只需要在主文件的代码中添加下面就可以了,国外的网站好多解决方案都是这样说明
@hook(‘after_request’)
def enable_cors():
response.headers[‘access-control-allow-origin’] = ‘*’
而事实上是按找出来的解决方法添加后还是出现错误,查看浏览器输出的http头并没有看到我们刚刚增加的access-control-allow-origin:*,如下图:
通过debug,进入bottle的源码中查看
这个问题我测试过在python2与python3对应的bottle框架中都存在这种问题,我们将它改为:
class httpresponse(response, bottleexception):
def init(self, body=”, status=none, headers=none, **more_headers):
super(httpresponse, self).init(body, status, headers, **more_headers)
def apply(self, response):
response._status_code = self._status_code
response._status_line = self._status_line
if self._headers:
if response._headers:
response._headers.update(self._headers)
else:
response._headers = self._headers
response._cookies = self._cookies
response.body = self.body
再运行代码就可以看见ajax代码正常了
以上就是图文详解python的bottle框架跨域请求报错问题的处理方法的详细内容,更多请关注 第一php社区 其它相关文章!