laya.core.js 18667行 complete方法 按照如下修改
complete(data) {
this._data = data;
if (this._customParse) {
this.event(Event.LOADED, data instanceof Array ? [data] : data);
}
else {
this._http.offAllCaller(this);
Loader._loaders.push(this);
if (!Loader._isWorking)
Loader.checkNext();
}
}