Uncaught TypeError: Cannot read property 'username' of null常见错误

在一个web 向项目中,user登录状态显示模块,有一个异常:
Uncaught TypeError: Cannot read property ‘username’ of null

Uncaught TypeError: Cannot read property 'username' of null常见错误_第1张图片

是因为:username 空指针
检查user模块代码,发现判断错了

Uncaught TypeError: Cannot read property 'username' of null常见错误_第2张图片

》修改如下:
sdf

     User user = (User) session.getAttribute("loginUser");
        if (user == null) { // bugyici
            resultInfo = new ResultInfo(false, null, null);
        } else {
            resultInfo = new ResultInfo(true, user, null);
        }
        return resultInfo;

你可能感兴趣的:(Java基础学习)