efront 3.20.7 → 3.20.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/coms/zimoli/data.js +3 -2
- package/package.json +1 -1
- package/public/efront.js +1 -1
package/coms/zimoli/data.js
CHANGED
|
@@ -615,8 +615,9 @@ var privates = {
|
|
|
615
615
|
if (!_configfileurl) {
|
|
616
616
|
throw new Error("没有指定配置文件的路径,请使用data.loadConfig加载配置");
|
|
617
617
|
}
|
|
618
|
-
|
|
619
|
-
|
|
618
|
+
var p = this.loadIgnoreConfig('get', _configfileurl);
|
|
619
|
+
p.loading.abort = function () { };
|
|
620
|
+
configPormise = p.then(createApiMap);
|
|
620
621
|
}
|
|
621
622
|
return configPormise;
|
|
622
623
|
},
|