Vue.js 2 - v-for列表转发器中的计算属性

时间:2016-12-08 19:01:45

标签: javascript vue.js vuejs2

我正在尝试将一些计算列添加到表中(请参阅最后三列)。我有一种感觉,它与计算属性没有正确引用记录。我肯定会遗漏一些简单的东西!有任何想法吗?谢谢!

这是小提琴:https://jsfiddle.net/0770ct39/2/

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Vue.js Tutorial | More Computed Properties</title>

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  </head>

  <body>
    <div id="app" class="container">
      <div class="row">
            <table class="table table-hover">
                <thead>
                    <tr>
                        <th>Phase</th>
                        <th>Labour Budget</th>
                        <th>Labour Hours</th>
                        <th>Labour Cost Rate</th>
                        <th>Labour Cost</th>
                        <th>Overhead Cost</th>
                        <th>Net</th>
                    </tr>   
                </thead>
                <tbody>
                    <tr v-for="record in records">
                        <td>{{record.phase}}</td>
                        <td>{{record.labourBudget}}</td>
                        <td><input type="text" v-model="record.labourHours"></td>
                        <td><input type="text" v-model="record.labourCostRate"></td>
                        <td>{{record.labourCost}}</td>
                        <td>{{record.overheadCost}}</td>
                        <td>{{record.net}}</td>
                    </tr>
                </tbody>
            </table>
      </div>
    </div>
  </body>

  <script src="https://unpkg.com/vue@2.0.3/dist/vue.js"></script>

  <script>
    var app = new Vue({
      el: '#app',
      data: {
        records: [
            {phase:"Phase1", labourBudget: 100, labourHours: 4, labourCostRate: 45},
            {phase:"Phase2", labourBudget: 100, labourHours: 2, labourCostRate: 42}
        ]
      },
      computed: {
        labourCost: function(){
            return this.record.labourHours * this.record.labourCostRate;
        },
        overheadCost: function(){
            return this.record.labourCost * 1.36;
        },
        net: function(){
            return this.record.netRevenue-this.record.labourCost-this.record.overheadCost;
        }
      }
    })
  </script>
</html>

2 个答案:

答案 0 :(得分:1)

计算属性函数不起作用的原因是因为this关键字引用了您的Vue实例。例如..如果您更改了这样的计算函数...

computed: {
  labourCost: function() {
    return app.record.labourHours * app.record.labourCostRate;
  }
}

...它在功能上与您现在拥有的相同,因为app变量引用您的Vue实例。

所以,在你当前的状态下,当Vue处理你的计算属性时,它会说“嘿!没有名为record的数据属性!我的意思是,我看到一个叫records,但没有一个叫record

我建议返回所有记录的计算数组,如此。

var app = new Vue({
  el: '#app',
  data: {
    records: [
        {phase:"Phase1", labourBudget: 100, labourHours: 4, labourCostRate: 45},
        {phase:"Phase2", labourBudget: 100, labourHours: 2, labourCostRate: 42}
    ]
  },
  computed: {
    rows: function() {
      return this.records.map(function(record) {
        return Object.assign({}, record, {
          labourCost : record.labourHours * record.labourCostRate,
          overheadCost : record.labourCost * 1.36,
          net : record.netRevenue-record.labourCost-record.overheadCost
        });
      });
    }
  }
})

然后将html中的循环更改为

<tr v-for="record in rows">

注意:Object.assign()是ES2015的事情。但是你可以使用这个polyfill。或者您可以使用替代的对象合并函数,例如lodash的_.assignjQuery.extend()

答案 1 :(得分:0)

您需要将每一行设为自己的组件,然后将record传递给它,以使其正常工作。如果您不想制作组件,可以使用methods代替。

你基本上可以这样做:

methods: {
  laborCost: function(record) {
    return record.labourHours * record.labourCostRate
  },
  ...
}

然后像

一样使用它
{{ laborCost(record) }}

如果你想去组件路线(我认为你应该这样做)你会做这样的事情:

<record v-for="record in records" :record="record"></record>

然后,您可以将这些计算出的属性复制并粘贴到该组件中,它将按预期工作。