我想在VM数据中设置选择标签的值。
<table id="vm" v-cloak>
<thead>
<tr>
<th>Select</th><th>Operation</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, i) in rowData">
<td>
<select v-model="selected" @change="changeDate($event)">
<option v-for="sItem in selectItems" :value="sItem.val">{{sItem.lbl}}</option>
</select>
</td>
<td>
<button @click="addRow(i)">+</button>
<button @click="removeRow(i)">-</button>
</td>
</tr>
</tbody>
</table>
我的剧本
// Select tag items
const SELECT_ITEMS = [
{val:"1", lbl:"Val1"},
{val:"2", lbl:"Val2"},
{val:"3", lbl:"Val3"}
];
// my vm
new Vue({
el: "#vm",
data:{
rowData:[{val:"1"},{val:"2"}],
selected : '',
selectItems : SELECT_ITEMS
},
methods:{
// add new row
addRow(i){
let row = {
val : this.selected,
};
this.rowData.splice(i, 0, row);
this.val = '';
},
// remove current row
removeRow(i){
this.rowData.splice(i,1);
},
changeDate(e){
// I want to set a value to item in rowData.
console.log(e.target.value);
}
}
});
CodePen
我不知道如何将所选数据设置为rowData当前行的数据。
而且,更改一项将更改所有项目。
而且,我想在加载时添加选定的属性。
最佳答案
为什么不直接在rowData
中使用v-model
?
Demo:
<tr v-for="(item, i) in rowData">
<td>
<select v-model="rowData[i].val" @change="changeDate($event)">
<option v-for="sItem in selectItems" :value="sItem.val">{{sItem.lbl}}</option>
</select>
</td>
<td>
<button @click="addRow(i)">+</button>
<button @click="removeRow(i)">-</button>
</td>
</tr>
关于javascript - 在vue.js中使用动态行获取表中的选择标签值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55840858/