微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

js引起的 xxxx of null

在 vue 中操作 dom 元素的时候,报错 style of null

这个报错的原因,跟你代码的健壮性有关了;
这样就不会报错了


if( document.querySelectorAll(".Now")[1] ){
    document.querySelectorAll(".Now")[1].style.color="#606266"
    document.querySelectorAll(".Now")[1].style.background="#fff"
}

你之前是这样写的


document.querySelectorAll(".Now")[1].style.color="#606266"
document.querySelectorAll(".Now")[1].style.background="#fff"

找不到对象(没有这个对象) 引起的 XXX of null

TypeError: Cannot read property 'length' of null at eval (personindex.vue?139c:438)

( res.data.notDone.applys.length > 8 ){
    报错
}

优化后

(res.data.notDone.applys&&res.data.notDone.applys.length>8){ 正确}

正确

if(str&&str.slice(0,4)=="http"){
   return str
}
 为啥要使用&&;因为没有时,就会报错,找不到对象
if(res.data&&res.data.length>5){
    this.newListArr = res.data ? res.data.slice(0,5) : []
}else{
    this.newListArr = res.data ? res.data: []
}

循环应该注意的事项

有可能 res.data 为 null

if(res.success==true && res.data ){
    for(let k=0;k<res.data.length;k++){ 这里可能报错
        if(res.data[k].frontCoverUrl){
            res.data[k]['showurl']='';
            console.log(111);

        }
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐