##この記事の動作環境: Windows10 システム、vue.js 2.9、thinkpad t480 コンピューター。 vue を使用して Json データをループし、そのデータを Table テーブルに入力します。 表示コード:テーブルにデータを入力する Vue.js メソッド: [async getData(id) {const res = await this.$store.api.newReq('/xxx/xxx/xxx/' id).get ();if (...].
async getData(id) { const res = await this.$store.api.newReq('/xxx/xxx/xxx/' + id).get(); if (res.code === 0) { this.data = res.data; } },
data: { base: {}, baseList:[], },
<table class="el-table el-table--fit el-table--border table-detail"> <thead> <tr> <th>ID</th> <th>文章id</th> <th>分类名称</th> <th>分类等级</th> <th>创建时间</th> </tr> </thead> <tbody> <tr v-for="cm in data.categoryMapList"> <td v-text="cm.id"></td> <td v-text="cm.docId"></td> <td v-text="cm.categoryName"></td> <td v-text="cm.categoryLevel"></td> <td v-text="cm.createTime"></td> </tr> </tbody> </table>
以上がvue.jsのテーブルにデータを入力する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。