mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-02 04:37:42 +08:00
Fix for multiple $.ajax calls with "JSONP" dataType (related to #2417)
This commit is contained in:
@ -236,6 +236,9 @@ yii = (function ($) {
|
|||||||
return this.src.charAt(0) === '/' ? hostInfo + this.src : this.src;
|
return this.src.charAt(0) === '/' ? hostInfo + this.src : this.src;
|
||||||
}).toArray();
|
}).toArray();
|
||||||
$.ajaxPrefilter('script', function (options, originalOptions, xhr) {
|
$.ajaxPrefilter('script', function (options, originalOptions, xhr) {
|
||||||
|
if(options.dataType == 'jsonp') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
var url = options.url.charAt(0) === '/' ? hostInfo + options.url : options.url;
|
var url = options.url.charAt(0) === '/' ? hostInfo + options.url : options.url;
|
||||||
if ($.inArray(url, loadedScripts) === -1) {
|
if ($.inArray(url, loadedScripts) === -1) {
|
||||||
loadedScripts.push(url);
|
loadedScripts.push(url);
|
||||||
|
|||||||
Reference in New Issue
Block a user