3
我想總結一個對象中的幾個屬性。 我正在使用VueJS過濾器,並結合使用ES5 reduce函數來合計數字以獲得總數。如何計算json對象數組中的值? (在VueJS)
嗯,這不是在這個時候工作。有人關心幫助我嗎?
new Vue({
el: '.app',
data: {
products: [{
"pid": "37",
"pname": "Reprehenderit",
"price": "4.29",
"amount": "1"
}, {
"pid": "45",
"pname": "Sit",
"price": "1.00",
"amount": "4"
}, {
"pid": "67",
"pname": "Omnis",
"price": "7.00",
"amount": "2"
}],
}
});
Vue.filter('subtotal', function (list, key1, key2) {
return list.reduce(function(total, item) {
return total + item.key1 * item.key2
}, 0)
})
<script src="http://cdnjs.cloudflare.com/ajax/libs/vue/1.0.11/vue.min.js"></script>
<div class="app">
Product example: {{ products[0].pname }}
<br><br>
Total: {{ products | subtotal 'price' 'amount' }}
</div>
謝謝!一個完整的,非常明確的答案:)不知道我必須先啓動過濾器...... – Milkmannetje