- EmberJS 教程
- EmberJS — 主页
- EmberJS — 概述
- EmberJS — 安装
- EmberJS — 核心概念
- 创建并运行应用
- EmberJS — 对象模型
- EmberJS — 路由
- EmberJS — 模板
- EmberJS — 组件
- EmberJS — 模型
- EmberJS — 管理依赖项
- EmberJS — 应用关注点
- EmberJS — 配置 Ember.js
- EmberJS — Ember Inspector
- EmberJS 有用资源
- EmberJS — 快速指南
- EmberJS — 有用资源
- EmberJS — 讨论
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、production 和 test。
配置 Ember CLI
你可以通过向 .ember-cli 文件(位于你应用的根目录下)添加配置来配置 Ember CLI。
例如,你可以使用命令 ember server --port 8080 从命令行传递端口号。此配置可以添加到 .ember-cli 文件中,如下所示 −
{ "port" : 8080 }
emberjs_configuring_emberjs.htm
广告