Browse Source

Pull request #2055: 无JIRA任务 优化下输出

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit 'ea32513ff4a65623ef4ec0ea6ad0c0df2330f484':
  优化一下
  优化一下
es6
guy 3 years ago
parent
commit
390671777b
  1. 8
      src/core/6.inject.js

8
src/core/6.inject.js

@ -11,10 +11,12 @@
if (moduleInjection[xtype] != null) {
_global.console && console.error("module: [" + xtype + "] 已经注册过了");
}
var key;
if (BI.isFunction(cls)) {
cls = cls();
}
for (var k in moduleInjectionMap) {
if (cls[k]) {
for (key in cls[k]) {
for (var key in cls[k]) {
if (!moduleInjectionMap[k]) {
continue;
}
@ -124,7 +126,7 @@
}
}
if (findVersion === true) {
_global.console && console.error("moduleId: [" + module.moduleId + "] 服务: [" + type + "] 版本: [" + module.version + "] 已过期", modelInjection[module.moduleId]);
_global.console && console.error("moduleId: [" + module.moduleId + "] 接口: [" + type + "] 接口版本: [" + version + "] 已过期,版本要求为:", dependencies[module.moduleId], modelInjection[module.moduleId]);
continue;
}
}

Loading…
Cancel
Save