EmberJS — 配置应用和 Ember CLI



你可以配置 Ember App 和 CLI 以管理应用环境。环境配置文件位于 config/environment.js。它包含以下代码结构 −

module.exports = function(environment) {
   var ENV = {
      modulePrefix: 'query-params', //it is the name of application
      environment: environment,
      baseURL: '/',
      locationType: 'auto',
      EmberENV: {
         
         FEATURES: {
            // Here you can enable experimental features on an ember canary build
            // e.g. 'with-controller': true
         }
      },

      APP: {
         // Here you can pass flags/options to your application instance
         // when it is created
         API_HOST: 'https://127.0.0.1:3000'
      }
   };

   if (environment === 'development') {
      //code here
   }

   if (environment === 'test') {
      //code here
   }

   if (environment === 'production') {
   }

   return ENV;
};

ENV 对象包含以下三个键 −

  • EmberENV − 它提供 Ember 功能标志。

  • APP − 用来向你的应用实例传递标志/选项。

  • environment − 它提供当前环境名称,例如 development、productiontest

配置 Ember CLI

你可以通过向 .ember-cli 文件(位于你应用的根目录下)添加配置来配置 Ember CLI。

例如,你可以使用命令 ember server --port 8080 从命令行传递端口号。此配置可以添加到 .ember-cli 文件中,如下所示 −

{
   "port" : 8080
}
emberjs_configuring_emberjs.htm
广告