跨域特性:
- 是浏览器做出的跨域限制
- 跨域:请求不是本域的,协议、域名、端口,任何一个不一样,浏览器就会认为跨域
- 跨域只针对XHR(xmlhttprequest)请求,看下面的type
根据特性一解决:
chrome --disable-web-security --user-data-dir
或者 就可以了
JSONP(JSON with Padding):
请求实例: url: ‘xxxx:423.5.25/xxx/dfsaf‘ dataType: ‘jsonp‘
浏览器会不当做xhr请求不做校验
原文地址:https://www.cnblogs.com/tabCtrlShift/p/9245922.html
时间: 2024-10-19 20:24:53