我有一个类似于以下内容的提供程序:
angular.module('myProvider', function(){
var appUrl = ''
this.setAppUrl = function(url){
appUrl = url;
}
this.$get = ['$http', function($http){
return {
appAction: function(){
$http.get(appUrl).then(function(response){
//do stuff
});
}
}
}]
});
目前,该应用根据使用 grunt ngconstant 作为构建过程的一部分生成的常量在 .config 块中设置 appUrl。
我正在尝试将应用程序更改为通过 $http 从 json 文件加载配置文件。提供者现在看起来像这样:
angular.module('myProvider', function(){
this.$get = ['$http', function($http){
return $http.get('path/to/config.json').then(function(response){
appUrl = response.appUrl;
return {
appAction: function(){
$http.get(appUrl).then(function(response){
//do stuff
});
}
}
});
}]
});
这会从远程源加载配置,但具有返回承诺而不是实际函数的不良副作用。在从提供者返回值之前,我已经尝试(未成功)解决承诺。我不想更改我的应用程序的其余部分以期望返回一个承诺而不是返回一个函数。确保此方法返回函数的最佳方法是什么?