所以我有一个以上的自定义指令在一个服务中的同一个函数内调用一个promise,它获取带有promise的数据。服务中的这个函数被命中4次(因为4个指令调用它)。这是问题所在。我只想要调用一次,而不是4次。我怎样才能做到这一点?
另外,对不起,我无法提供我的代码。它只是一个服务承诺的服务,然后返回那种类似的
服务:
return {
GetData: function() {
return processData.then(function(response){
return response
});
processData
只是在文件中提前缓存,我在$http.get
获取数据。
指令:
serviceName.GetData().then(function(response){
//Do Stuff and what not
})
答案 0 :(得分:2)
可以存储promise对象,并且可以使用then()
var promise = null;
return {
GetData: function() {
if (!promise) {
promise = proccessData.then(function(response) {
return response
});
}
return promise;
}
访问它的第一个指令将设置promise变量,然后所有其他指令将访问相同的promise