修改request模块,只要是ajax, 都加上x-requested-with头
parent
e25ff4286e
commit
263f6b5dea
|
@ -438,10 +438,11 @@ class _Request {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 2.3 如果不是跨域请求,则自动加上一条header信息,用以标识这是ajax请求
|
// 2.3 如果不是JSONP,则自动加上一条header信息,用以标识这是ajax请求
|
||||||
if (!this.opt.crossDomain) {
|
if (this.opt.method !== 'JSONP') {
|
||||||
this.set('X-Requested-With', 'XMLHttpRequest')
|
this.set('X-Requested-With', 'XMLHttpRequest')
|
||||||
} else {
|
}
|
||||||
|
if (this.opt.crossDomain) {
|
||||||
supportCors && (this.xhr.withCredentials = true)
|
supportCors && (this.xhr.withCredentials = true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue