define(["io/cor/extensions", "gettext!io/cor"], function (ext, g) {
"use strict";
require(["io/cor/config"], function (xConfig) {
xConfig.load().done(function(temp) {
console.log("value:", xConfig.get("ui.branding.enabled"));
});
});
});
我有“ui.branding.enabled”属性,ovf.properties
在这个位置还有其他各种可用的属性文件。在上面的代码中,我可以看到oxConfig.get("ui.branding.enabled")
正在读取属性。
我无法理解xConfig
正在查看哪个属性文件。我看不到属性文件和xConfig
我的代码中的映射。