我正在使用Ember Data并尝试创建一个计算属性,该计算属性等于商店中所有产品的总和,并应用各自的折扣。我是新来的承诺链接,我相信这是我如何格式化链的问题。
export default DS.Model.extend({
title: DS.attr('string'),
storeProducts: DS.hasMany('storeProduct',{async:true}),
totalStoreValue:function(){
store.get('storeProducts').then(function(storeProducts){ //async call 1
return storeProducts.reduce(function(previousValue, storeProduct){ //begin sum
return storeProduct.get('product').then(function(product){ //async call 2
let price = product.get('price');
let discount = storeProduct.get('discount');
return previousValue + (price * discount);
});
},0);
}).then(function(result){ //
return result;
});
}.property('storeProducts.@each.product'),
任何帮助和建议都将不胜感激。
答案 0 :(得分:1)
在计算总数之前,使用Ember.RSVP.all
解析您的承诺列表:
store.get('storeProducts').then((storeProducts) => { //async call 1
return Ember.RSVP.all(storeProducts.map(storeProduct => {
return storeProduct.get('product').then((product) => { //async call 2
let price = product.get('price');
let discount = storeProduct.get('discount');
return price * discount;
});
}));
}).then(function(result){ //
return result.reduce((prev, curr) => {
return prev+curr;
}, 0);
});