标题描述了我想要的,这是代码
如果我们将产品添加到items
(如果它不存在)(ID不同),则一切正常。但如果它存在,我想只修改项目。不同之处在于items
数组中每个项的id。
例如:if first,id = 1,qty = 3,next,id = 1,qty = 3,我想在items
new Vue({
el: '#fact',
data: {
input: {
id: null,
qty: 1
},
items: []
},
methods: {
addItem() {
var item = {
id: this.input.id,
qty: this.input.qty
};
if(index = this.itemExists(item) !== false)
{
this.items.slice(index, 1, item);
return null;
}
this.items.push(item)
},
itemExists($input){
for (var i = 0, c = this.items.length; i < c; i++) {
if (this.items[i].id == $input.id) {
return i;
}
}
return false;
}
}
})
<Doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Add product</title>
</head>
<body>
<div id="fact">
<p>
<input type="text" v-model="input.id" placeholder="id of product" />
</p>
<p>
<input type="text" v-model="input.qty" placeholder="quantity of product" />
</p>
<button @click="addItem">Add</button>
<ul v-if="items.length > 0">
<li v-for="item in items">{{ item.qty + ' ' + item.id }}</li>
</ul>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.13/vue.min.js"></script>
</body>
</html>
答案 0 :(得分:3)
您可能误用了slice
方法,change slice
to splice
对我有效:
this.items.splice(index, 1, item)
slice
根据documentation here不会触发查看更新。
Vue包装观察到的数组的变异方法,所以它们也会 触发视图更新。包装的方法是:
- push()
- pop()
- shift()
- unshift()
- splice()
- sort()
- 反向()
答案 1 :(得分:-1)
if(index = this.itemExists(item) !== false)
{
for (let value of this.items) {
if(value.id === item.id) {
value.qty = item.qty;
}
}
return null;
}