1. 程式人生 > >Uncaught TypeError: Cannot read property 'username' of null常見錯誤

Uncaught TypeError: Cannot read property 'username' of null常見錯誤

在一個web 向專案中,user登入狀態顯示模組,有一個異常:
Uncaught TypeError: Cannot read property ‘username’ of null

在這sdf裡插入圖片描述

是因為:username 空指標
檢查user模組程式碼,發現判斷錯了

34

》修改如下:
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;