我想从配置文件而不是从index.html(而不是从config / environment生成的元素)中获取一些配置属性,例如带有两个变量(lang和host)的myConfig.js,可以在构建后更改。目前我将这些变量放在config / enviroment中,但我想将这些变量与这些数据分开。
例如:
的index.html:
<!DOCTYPE html>
...
<meta name="myapp/config/environment" content="%7B%22modulePrefix%22%3A%22user%22%2C%22environment%22%3A%22development%22%2C%22baseURL%22%3A%22/%22%2C%22locationType%22%3A%22auto%22%2C%22contentSecurityPolicy%22%3A%7B%22default-src%22%3A%22%27none%27%20localhost%22%2C%22script-src%22%3A%22%27self%27%20%27exportApplicationGlobal%22%3Atrue%7D">
...
<script src="myconfig.js" ></script>
...
</html>
myconfig.js:
module.exports = function() {
var MYCONFIG = {
lang: 'en',
host: 'http://.....'
}
return MYCONFIG ;
};
如何做到这一点?
任何帮助都会受到极大关注
答案 0 :(得分:0)
您可以创建config
utils
// utils/config-utils.js
export default {
lang: 'en',
host: 'http://.....'
};
然后将其导入您需要的地方:
// controllers/my-controller.js
import ConfigUtil from '../utils/config';
const {
lang
} = ConfigUtil;
export default MyController.extend({
...
});
答案 1 :(得分:0)
最后,我将一个json文件放在公共文件夹中,并在应用程序路径中使用Ember。$。ajax来获取它。