Selaa lähdekoodia

update

add_mode
DengBiao 1 vuosi sitten
vanhempi
commit
9ecc26187e
3 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. +0
    -2
      app/customer/hdl/hdl_user.go
  2. +4
    -0
      app/customer/mw/mw_customer_auth.go
  3. +0
    -2
      app/customer/svc/svc_auth.go

+ 0
- 2
app/customer/hdl/hdl_user.go Näytä tiedosto

@@ -7,7 +7,6 @@ import (
"applet/app/e"
"applet/app/enum"
"applet/app/utils"
"fmt"
"github.com/gin-gonic/gin"
"time"
)
@@ -15,7 +14,6 @@ import (
func UserInfo(c *gin.Context) {
//1、获取用户信息
userInfo := svc.GetUser(c)
fmt.Println(">>>>>>>>>>>>>userInfo", userInfo)
//2、获取用户身份信息
userIdentityDb := db.UserIdentityDb{}
userIdentityDb.Set(userInfo.Id)


+ 4
- 0
app/customer/mw/mw_customer_auth.go Näytä tiedosto

@@ -20,6 +20,10 @@ func Auth(c *gin.Context) {
return
}
}
if user == nil {
e.OutErr(c, e.ERR_NOT_AUTH, "当前用户信息失效")
return
}
// 将当前请求的username信息保存到请求的上下文c上
c.Set("user", user)
c.Next()


+ 0
- 2
app/customer/svc/svc_auth.go Näytä tiedosto

@@ -5,7 +5,6 @@ import (
"applet/app/db"
"applet/app/db/model"
"errors"
"fmt"
"github.com/gin-gonic/gin"
"strings"
"time"
@@ -13,7 +12,6 @@ import (

func GetUser(c *gin.Context) *model.User {
user, _ := c.Get("user")
fmt.Println("user>>>>>>>>>", user)
if user == nil {
return &model.User{
Id: 0,


Ladataan…
Peruuta
Tallenna