>  기사  >  웹 프론트엔드  >  vue.js에서 테이블에 데이터를 채우는 방법

vue.js에서 테이블에 데이터를 채우는 방법

王林
王林원래의
2021-10-12 16:16:253956검색

Vue.js 테이블에 데이터를 채우는 방법: [async getData(id) {const res = wait this.$store.api.newReq('/xxx/xxx/xxx/' + id).get(); if (...].

vue.js에서 테이블에 데이터를 채우는 방법

이 기사의 운영 환경: 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>

렌더링은 다음과 같습니다.

vue.js에서 테이블에 데이터를 채우는 방법

추천 학습: php training

위 내용은 vue.js에서 테이블에 데이터를 채우는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.