yingzi 1 year ago
parent
commit
f099fdd263
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/api/middleware/UserMiddleware.php

+ 1 - 1
app/api/middleware/UserMiddleware.php

@@ -39,7 +39,7 @@ class UserMiddleware implements MiddlewareInterface
         try{
         try{
             $memData = (new UserModel)
             $memData = (new UserModel)
                 ->alias("u")
                 ->alias("u")
-                ->field("u.*,wt.title as work_type_title")
+                ->field("u.*,IFNULL(wt.title,'') as work_type_title")
                 ->join("user_work_type wt","wt.id = u.work_type_id","left")
                 ->join("user_work_type wt","wt.id = u.work_type_id","left")
                 ->where('u.token',$token)
                 ->where('u.token',$token)
                 ->find();
                 ->find();