码迷,mamicode.com
首页 > 编程语言 > 详细

在做vue计算属性,v-for处理数组时遇到的一个bug

时间:2018-01-21 01:15:07      阅读:392      评论:0      收藏:0      [点我收藏+]

标签:component   this   class   item   code   地址   markdown   com   渲染   

问题

bug: You may have an infinite update loop in a component render function 无限循环

  1. 需要处理的数组(在 ** ssq **里):
    bonus_code: [‘01‘, ‘19‘, ‘25‘, ‘26‘, ‘27‘, ‘33‘, ‘10‘]
  2. 计算属性 computed:

    ssqRed: function() {
    return this.ssq.bonus_code.splice(0, 6)
    },
    ssqBlue: function() {
    return this.ssq.bonus_code.splice(6, 7)
    }
  3. v-for 代码:

    <em class="red-ball tac mr5 fl" v-for="(item, index) in ssqRed">{{ item }}</em>
    <em class="blue-ball tac mr5 fl" v-for="(item, index) in ssqBlue">{{ item }}</em>
  4. 最终结果我想把数组前6个数渲染成红色球,最后一个(也就是第7个)渲染成蓝色。

解答

我已经在 SegmentFault上提问,地址:vue计算属性computed同时操作一个数组

我已采纳答案,将代码改成:

ssqRed: function() {
    return this.ssq.bonus_code.slice(0, 6)
},
ssqBlue: function() {
    return this.ssq.bonus_code.slice(6, 7)
}

问题就在于自己没搞清楚 splice会对原数组造成改变。

在寻找解决方案时,朋友少晖教给我一种更好的解决方式,很感谢

即类名判断

  1. 如果数组大小已知,就做一个类名判断,索引大于多少展示蓝色的类名就行了;
  2. 处理后的 html代码:

    <em v-for="(item, index) in ssq.bonus_code" :class="[‘tac‘,‘mr5‘,‘fl‘,index>5?‘blue-ball‘:‘red-ball‘]" >{{ item }}</em>
  3. 增加的代码:

    index>5?‘blue-ball‘:‘red-ball‘

在做vue计算属性,v-for处理数组时遇到的一个bug

标签:component   this   class   item   code   地址   markdown   com   渲染   

原文地址:https://www.cnblogs.com/stephentian/p/8322378.html

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