Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ember mirage 模拟您的 API 服务器以返回可用于在您的 ember 应用程序中进行测试的“模拟”数据。您如何知道 Ember mirage 何时使用您的真实 API 以及何时使用您的模拟 API。你怎么能打开/关闭这个?
默认情况下,只要未通过 --proxy 选项,您的 Mirage 服务器将在测试模式和开发模式下运行。要更改此默认行为,请在 ENV 配置中将 enabled 设置为 true 或 false。
// config/environment.js ... if (environment === 'production') { ENV['ember-cli-mirage'] = { enabled: true //turns it on/off } }
来源: Ember-cli-mirage 配置