Vue.js 테이블에 데이터를 채우는 방법: [async getData(id) {const res = wait this.$store.api.newReq('/xxx/xxx/xxx/' + id).get(); if (...].
이 기사의 운영 환경: windows10 시스템, vue.js 2.9, thinkpad t480 컴퓨터.
vue를 사용하여 Json 데이터를 반복한 다음 데이터를 테이블 테이블.
디스플레이 코드:
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>
렌더링은 다음과 같습니다.
추천 학습: php training
위 내용은 vue.js에서 테이블에 데이터를 채우는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!