Vue和元素组件

时间:2017-12-27 17:36:26

标签: vue.js vuejs2 element element-io

我有一个复杂的对象,为简洁起见,对象的结构是这样的:

{
     Sample: [{
      Model: {
          Id: "1"
      },

      Collection: [{
          Id: "1"
      }]    
     }]
}

数据表可以很好地呈现模型数据。但是,在尝试访问集合时,表格不会输出数据。

<template>
     <el-table :data="Sample" highlight-current-row :row-class-name="tableRow" stripe :default-sort="{ prop: 'Sample.Id, order: 'descending'}">
          <el-table-column type="expand">
               <el-row :gutter="20" v-for="property in Collection">
                    <el-col :span="24"><div>Id: {{ property.Id }}</div></el-col>
               </el-row>
          </el-table-column>
          <el-table-column prop="Model.Id" label="Id" width="300"></el-table-column>
     </el-table>
</template>

绑定到表的数据是否会忽略循环?我能够在绑定期间作为道具进行访问,数据正在发送,但是当添加循环时,数据不会输出。

Element-io Vue

1 个答案:

答案 0 :(得分:1)

我知道为什么循环不起作用,因为Collection位于Sample。您的数据结构是Sample数组,它包含一个对象。

data structs

因此,您可以将代码修改为:

v-for="(property,index) in Sample[0].Collection"