我正在使用Ionic 2 RC1并尝试拥有动态API端点。我可以检测Cordova是否存在,如果不存在则使用localhost。但是,我也希望我的测试版本能够访问staging.domain.com端点,而通过ionic build --release android -prod
发布版本可以访问www.domain.com。
这可能吗?
if(this.platform.is("cordova")){
// if release build hit http://www.domain.com
// else hit http://staging.domain.com
}else{
this.root = "http://localhost:3000";
}
我注意到新的RC1有/src/app/main.prod.ts和/src/app/main.dev.ts,但我不确定如何使用这些......