我的JSON元素的數組,我想使用v-repeat
輸出它作爲一系列表格行:Vue.js:V-重複不是從JSON陣列獲取數據
<tr v-repeat="items">
<td>{{code}} </td>
<td> {{description}}</td>
<td>
{{price}}
</td>
<td><input v-model="quantity" type="text" size="4"/></td>
<td> {{total = price * quantity}}</td>
</tr>
一行爲JSON中的每個項目輸出空單元格 - 因此Vue.js沒有獲得屬性值,即使我已經確認它們肯定存在,並且如果我做了這樣的事情,我可以在v-repeat中獲取值:
{{items[$index].code}}
我沒有收到任何錯誤或警告。
這是我的Vue公司的數據對象的JSON輸出:
{ "items":[{
"id": "408",
"product_id": "6",
"description": " item description here... ",
"price": "1210.26",
"created_at": "2015-06-04 15:10:14",
"updated_at": "2015-06-04 15:10:14",
"quote_id": "32",
"quantity": "1",
"code": "PI0055"
}]}
謝謝,就在看到你的答案之前,我意識到我沒有初始化數據對象! – HPage