我正在尝试使用passthrough
的功能ember-cli-mirage
允许我的应用程序请求不同的 API 和主机。
export default function() {
//window.server = this;
//this.namespace = 'api';
this.passthrough('locales/en/translation.json');
this.get('/api/customers');
this.passthrough();
this.host='https://abcd.site.com';//need something like this, but not working
this.namespace = 'api/Service.svc';
};
我想将请求指向当前 ember 服务器正在运行的环境之外。但是通过固定 URL 的请求就像/api/authenticate
.
它抛出异常如下。
POST http://localhost:4200/api/authenticate 404 (Not Found)
我想将请求配置为如下所示
https://abcd.site.com/api/Service.svc/authenticate
ember-cli-mirage/伪装者中是否有任何可用选项?请帮忙。