Ember数据异步关系的聚合

时间:2015-01-05 00:14:35

标签: javascript ember.js jsbin

我有一个由更多交易组成的发票,任何交易都有总金额作为最终结果,它来自两个值的乘法:数量和票价

我试图计算所有这些交易总和的总和

这是错误未捕获的TypeError:无法读取属性' getEach'未定义的

我理解为什么会发生这种情况,价值总量还不存在(因为它还没有计算)

这是我的函数transactionsAmounts

的模型
App.Invoice = DS.Model.extend({
  title         : DS.attr('string'),
  transactions  : DS.hasMany('transaction', { async:true}),
  transactionsAmounts: function() {
    var sum = function(s1, s2) { return s1 + s2; };
    return this.get('model').getEach('total').reduce(sum);
  }.property('model.@each.total'),
});

App.Transaction = DS.Model.extend({
  quantity: DS.attr('string'),
  fare: DS.attr('string'),
  total: DS.attr('string'),
  invoice: DS.belongsTo('invoice'),
  updateTotal: function() {

  // get the reference to the values of fare and quantity
  var quantity = this.get('quantity'),
      fare = this.get('fare');

  // massage them to make sure your stuff is not gonna break
  if (isNaN(fare)) { fare = 0; }
  if (isNaN(quantity)) { quantity = 0; }

  // calculate
  var total = fare * quantity;

  // set the total
  this.set('total', total);

}.observes('quantity', 'fare') 


});

这是我用来计算所有总数的其他函数,我得到了相同的错误

transactionsAmounts: function(){
    var totals = this.get("total");
    return totals.reduce(function(previousValue, total){
        return previousValue + totals.get("transactionsAmounts");
    }, 0);
}.property("totals.@each.total")

我已在此jsbin

中复制了此案例

我怎么做?

1 个答案:

答案 0 :(得分:1)

这是一个工作的js bin,代码位已修改:http://jsbin.com/lipakamasi/18/edit?js,console,output

你的问题出在你的模型声明中,你的混合物很少:

App.Invoice = DS.Model.extend({
title           : DS.attr('string'),
transactions  : DS.hasMany('transaction', { async:true}),
transactionsAmounts: 0,
setTransactionAmount : function(){
    if(this.get("transactions.length")>0){
      this.get("transactions").then(function(transactions){
      var sum=0;
      transactions.forEach(function(transaction){
        sum+=transaction.get("total");
       });
      this.set("transactionsAmounts",sum);
     }.bind(this));
   }
  }.observes('transactions.length', 'transactions.@each.total'), /
});

首先查看您尝试引用的propertyobserves model.@each这对ArrayController有用,但您在DS.Model :)你想要的observes是什么交易。

然而,那些transactions是异步的,因此ember会加载一个“promise”,从而使用“async”javascript。