首页 > 其他 > 详细

vue将数据绑定到属性中

时间:2017-11-01 23:30:00      阅读:263      评论:0      收藏:0      [点我收藏+]

*必须使用[]

<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将数据绑定到属性中

原文:http://www.cnblogs.com/zhuxiang1633/p/7768888.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!