当前位置:  开发笔记 > 编程语言 > 正文

EmberJS,如何为不同的"环境"管理不同的"配置变量"

如何解决《EmberJS,如何为不同的"环境"管理不同的"配置变量"》经验,为你挑选了1个好方法。



1> fguillen..:

在Ember 2.2和EmberCLI中,它可以开箱即用,如下所示:

为每个环境设置URLS :

# /config/environments.js
...
if (production === 'production') {
  ENV.API_HOST = 'http://production.server.com'
}

if (environment === 'development') {
  ENV.API_HOST = 'http://development.server.com'
}
...

使用适配器中的URL :

# /app/adapters/application.js
import ActiveModelAdapter from 'active-model-adapter';
import config from '../config/environment';

export default ActiveModelAdapter.extend({
  namespace: 'api',
  host: config.API_HOST
});

推荐阅读
ifx0448363
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有