front-end-notes
front-end-notes copied to clipboard
ajax跨域请求
之前utils.js中的ajax是不是不支持跨域请求,www.51zhiquan.com请求dev.51zhiquan.com下的内容时Request Method 变成了OPTIONS

删除ajax方法中GET请求下的缓存header即可访问,具体原理不清楚。。
if (type == "GET" || type == "get" || type == null) {
xhr.open(type, url + '?' + data, true);
xhr.setRequestHeader("If-Modified-Since","0"); //删除此行
xhr.send(null);
}