如何从方法访问 vue 重复项键
How can I access vue repeated item key from a method
我有一个 html 页面,其中有一个 table 和一个使用 v-for:
的迭代行
<table id="app-4">
<tr v-for="(item, index) in results" :key="item.id">
<td>@{{ item.title }}</td>
<td>
<button v-on:click="deleteItem(index)">Delete</button>
</td>
</tr>
</table>
我有这个js代码。
var app4 = new Vue({
el: '#app-4',
data: {
results: []
},
methods: {
deleteItem: function (index) {
this.results.splice(index,1);
//Can I access item key and tr properties from here and the delete button
}
},
mounted() {
axios.get('api.list.url').then(response => {
this.results = response.data;
})
}
});
在 deleteItem 函数中,我可以访问项目键和 tr 属性 并将文本附加到项目删除按钮。
传统的 Vue 方法可能是使用引用
<table id="app-4">
<tr v-for="(item, index) in results" :key="item.id" ref="rows">
<td>@{{ item.title }}</td>
<td>
<button v-on:click="deleteItem(index)" ref="deleteButtons>
Delete
</button>
</td>
</tr>
</table>
在代码中
deleteItem: function (index) {
this.results.splice(index,1);
//Can I access item key and tr properties from here?
// Yes, e.g. to get the text content of the first cell
const text = this.$refs.rows[index].cells[0].textContent.trim();
// And add it to the delete button text
this.$refs.deleteButtons[index].textContent += " " + text;
}
当然,这个例子有点荒谬,因为你知道项目的标题,但该原则适用于文本行的其他属性(例如属性、计算样式、类 等)
我有一个 html 页面,其中有一个 table 和一个使用 v-for:
的迭代行<table id="app-4">
<tr v-for="(item, index) in results" :key="item.id">
<td>@{{ item.title }}</td>
<td>
<button v-on:click="deleteItem(index)">Delete</button>
</td>
</tr>
</table>
我有这个js代码。
var app4 = new Vue({
el: '#app-4',
data: {
results: []
},
methods: {
deleteItem: function (index) {
this.results.splice(index,1);
//Can I access item key and tr properties from here and the delete button
}
},
mounted() {
axios.get('api.list.url').then(response => {
this.results = response.data;
})
}
});
在 deleteItem 函数中,我可以访问项目键和 tr 属性 并将文本附加到项目删除按钮。
传统的 Vue 方法可能是使用引用
<table id="app-4">
<tr v-for="(item, index) in results" :key="item.id" ref="rows">
<td>@{{ item.title }}</td>
<td>
<button v-on:click="deleteItem(index)" ref="deleteButtons>
Delete
</button>
</td>
</tr>
</table>
在代码中
deleteItem: function (index) {
this.results.splice(index,1);
//Can I access item key and tr properties from here?
// Yes, e.g. to get the text content of the first cell
const text = this.$refs.rows[index].cells[0].textContent.trim();
// And add it to the delete button text
this.$refs.deleteButtons[index].textContent += " " + text;
}
当然,这个例子有点荒谬,因为你知道项目的标题,但该原则适用于文本行的其他属性(例如属性、计算样式、类 等)