美文网首页
[Vue warn]: Error in created hoo

[Vue warn]: Error in created hoo

作者: easonR | 来源:发表于2018-11-14 12:25 被阅读0次

记个坑:

在vue的created中写了个for循环如下:

created(){
    let _this = this;
    for ( let i = 0; i <= _this.items.length; i++) {
        _this.items[i].imgSrc = _this.items[i].navIcon
    }
}

结果报错:


1.png

搜了很多度娘无果,最后发现es6的箭头函数搞的鬼。。。
改成如下:

created(){
    let _this = this;
    for ( let i = 0; i < _this.items.length; i++) {
        _this.items[i].imgSrc = _this.items[i].navIcon
    }
}

把 "<=" 中的 "=" 去掉!。。。。。。卧槽。。。。。。

问题解决!

相关文章

网友评论

      本文标题:[Vue warn]: Error in created hoo

      本文链接:https://www.haomeiwen.com/subject/wdndfqtx.html