码迷,mamicode.com
首页 > 其他好文 > 详细

vue v-for 使用问题整理

时间:2019-07-31 12:49:00      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:template   erro   def   cannot   div   遇到   fine   type   通过   

今天使用v-for指令的时候遇到一个错误

[Vue warn]: Error in render: "TypeError: Cannot read property ‘children‘ of undefined"

技术图片

页面使用代码

            <template v-for="(c,i) in modelList.Course.children">
              <div :key="i" class="course-block">
                <CourseStruct :process="isbuy" :course="c" />
              </div>
            </template>
<script>

export default {
        methods: {
            async getList(id) {
                const res = await GetChapterListByProductID(id);
                if (res.data) {
                    this.modelList = res.data;
                 }
            }
      }
}

</script>

报错原因:

  我猜测使用了嵌套属性的原因,在页面中无法解析出具体属性值,这个原因是我尝试出来的,但是不知道深层次的原因了,有知道的希望评论下。

解决方案:

  既然知道了原因,那么就好解决了,解决方法如下.

            <template v-for="(c,i) in cls">
              <div :key="i" class="course-block">
                <CourseStruct :process="isbuy" :course="c" />
              </div>
            </template>
<script> export default { methods: {     async getList(id) {    const res = await GetChapterListByProductID(id);    if (res.data) { this.modelList = res.data; var co = this.modelList.Course this.cls = co.children   }    }      }        }       </script>

 通过变量中转一下,放到另一个临时变量中,如果有嵌套引用属性的话,大家记得通过js操作放到一个临时变量中,不然就会报错哟。

vue v-for 使用问题整理

标签:template   erro   def   cannot   div   遇到   fine   type   通过   

原文地址:https://www.cnblogs.com/dawenyang/p/11275552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!