vue将数据绑定到属性中
Posted fight139
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue将数据绑定到属性中相关的知识,希望对你有一定的参考价值。
*必须使用[]
<tr v-for="(p,index) in prodects"> @*v-bind:class="styleType(index)"*@ <td v-for="(value,key) in p">{{value}}</td> <td> <form id="updateP" action="/Home/UpdateProduct" method="get"> <div class=""> <input type="text" name="id" v-bind:value="[p[‘产品编号‘]]" /> <input type="text" name="name" v-bind:value="[p[‘产品名称‘]]" /> <input type="text" name="price" v-bind:value="[p[‘价格‘]]" /> <input type="text" name="address" v-bind:value="[p[‘产地‘]]" /> <input type="text" name="id" v-bind:value="[p[‘生产商‘]]" /> <input type="text" name="id" v-bind:value="[p[‘重量‘]]" /> </div> <a role="button" class="btn" v-on:click="updateProduct(p)" data-toggle="modal" data-target="#myModal"> 修改 </a> </form> </td>
以上是关于vue将数据绑定到属性中的主要内容,如果未能解决你的问题,请参考以下文章