您好,登錄后才能下訂單哦!
Html代碼
<tbody id="itemtr"> <tr is="item-row" v-for="item in items" v-on:editclick="editclick" v-on:removeclick="removeclick" v-bind:item="item"></tr> <!-- more data --> </tbody>
定義JavaScript模板
<script type="text/x-template" id="item-tr" > <tr v-bind:id="'tr_' +item.id"> <td>{{item.id}}</td> <td>{{item.name}}</td> <td> <button v-on:click="editclick">編輯</button> <button v-on:click="removeclick">刪除</button> </td> </tr> </script>
components組件
Vue.component("item-row", { props: ["item"], template: "#item-tr", methods: { editclick: function () { this.$emit('editclick', this.item) }, removeclick: function () { this.$emit('removeclick', this.item) } } })
Ajax請求數據
function loadItems() { $.ajax({ method: "GET", url: "/Article/getallArticle", data: {}, success: function (backData) { console.log(backData); if (backData.code == 1) { new Vue({ el: '#itemtr', data: { items: backData.data }, methods: { editclick: function (itemObject) { console.log(itemObject) }, removeclick: function (itemObject) { console.log(itemObject) } } }) } else { layer.msg(backData.msg); } }, error: function (error) { layer.msg(error.statusText); } }) }
執行函數
$(function () { loadItems(); })
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。