gpt4 book ai didi

javascript - Vue将元素数据绑定(bind)到html属性

转载 作者:行者123 更新时间:2023-12-03 02:48:18 24 4
gpt4 key购买 nike

我想将选定的行绑定(bind)到数组,我正在尝试将 v-for 中的数据绑定(bind)到我的输入值。我尝试了 v-bind:value="row.id",我尝试了 value={{row.id}} 但似乎没有任何效果。

<tbody>
<tr v-for="row in get_rows()">
<td>
<input type="checkbox" v-bind:value="row.id" v-model="selectedRows">
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>

我做错了什么?

最佳答案

为了使您的代码正常工作,您需要确保将 selectedRows 初始化为数组。将其添加到您的组件中:

data() {
return {
selectedRows: []
}
},

关于javascript - Vue将元素数据绑定(bind)到html属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48007827/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com