出现 Cannot read property 'xxxxxx' of null 问题思路

在Console中出现 Cannot read property 'xxxxxx' of null  的问题时很难查找到改原因的出处

今天在项目中看到页面出现 Cannot read property 'xxxxxx' of null 的字样如下:

出现 Cannot read property 'xxxxxx' of null 问题思路

对于像我这样的前端菜鸡根本,一开始以为是layer插件出现了问题

尝试一:修改alyer语句依旧报错    无效

尝试二:注释掉该页面所有alyer有关的代码    无效

百般不得其解的情况下将整个方法注释发现不报错了。。。

于是在该方法内进行degugger;

发现在执行到ajax后出现了上述报错,打印回调函数内容发现后台返回的结果是 null

结果显而易见,应该是后台的问题

于是我更变参数后,正确请求到数据后,报错就消失了。


总结:出现Cannot read property 'xxxxxx' of null 的错误时,未必是前端js的问题,可能是后台传过来的值导致前台报错。

                        <li class="tool-item tool-active is-like "><a href="javascript:;"><svg class="icon" aria-hidden="true">
                            <use xlink:href="#csdnc-thumbsup"></use>
                        </svg><span class="name">点赞</span>
                        <span class="count">3</span>
                        </a></li>
                        <li class="tool-item tool-active is-collection "><a href="javascript:;" data-report-click="{&quot;mod&quot;:&quot;popu_824&quot;}"><svg class="icon" aria-hidden="true">
                            <use xlink:href="#icon-csdnc-Collection-G"></use>
                        </svg><span class="name">收藏</span></a></li>
                        <li class="tool-item tool-active is-share"><a href="javascript:;"><svg class="icon" aria-hidden="true">
                            <use xlink:href="#icon-csdnc-fenxiang"></use>
                        </svg>分享</a></li>
                        <!--打赏开始-->
                                                <!--打赏结束-->
                                                <li class="tool-item tool-more">
                            <a>
                            <svg t="1575545411852" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5717" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M179.176 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5718"></path><path d="M509.684 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5719"></path><path d="M846.175 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5720"></path></svg>
                            </a>
                            <ul class="more-box">
                                <li class="item"><a class="article-report">文章举报</a></li>
                            </ul>
                        </li>
                                            </ul>
                </div>
                            </div>
            <div class="person-messagebox">
                <div class="left-message"><a href="https://blog.csdn.net/ayhao369csdn">
                    <img src="https://profile.csdnimg.cn/B/9/7/3_ayhao369csdn" class="avatar_pic" username="ayhao369csdn">
                                            <img src="https://g.csdnimg.cn/static/user-reg-year/2x/3.png" class="user-years">
                                    </a></div>
                <div class="middle-message">
                                        <div class="title"><span class="tit"><a href="https://blog.csdn.net/ayhao369csdn" data-report-click="{&quot;mod&quot;:&quot;popu_379&quot;}" target="_blank">ayhao369csdn</a></span>
                                            </div>
                    <div class="text"><span>发布了2 篇原创文章</span> · <span>获赞 3</span> · <span>访问量 5万+</span></div>
                </div>
                                <div class="right-message">
                                            <a href="https://im.csdn.net/im/main.html?userName=ayhao369csdn" target="_blank" class="btn btn-sm btn-red-hollow bt-button personal-letter">私信
                        </a>
                                                            <a class="btn btn-sm  bt-button personal-watch" data-report-click="{&quot;mod&quot;:&quot;popu_379&quot;}">关注</a>
                                    </div>
                            </div>
                    </div>
    
    出现 Cannot read property 'xxxxxx' of null 问题思路出现 Cannot read property 'xxxxxx' of null 问题思路 别抢我蓝buff 发布了19 篇原创文章 · 获赞 0 · 访问量 1566 私信 关注
    上一篇:使用nginx实现基于tcp协议的https协议多域名指向的分别转发功能


    下一篇:angularjs简单实现$http.post(CORS)跨域及$http.post传参方式模拟jQuery.post