增加获取logic after response实例的方法
This commit is contained in:
parent
9decd12ee8
commit
0d981b32c6
@ -8,10 +8,12 @@
|
|||||||
package request
|
package request
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"git.zhangdeman.cn/zhangdeman/gin/define"
|
||||||
"git.zhangdeman.cn/zhangdeman/gin/request/parse_body"
|
"git.zhangdeman.cn/zhangdeman/gin/request/parse_body"
|
||||||
"git.zhangdeman.cn/zhangdeman/wrapper"
|
"git.zhangdeman.cn/zhangdeman/wrapper"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -268,3 +270,25 @@ func (wh *wrapperHandle) ParseCookie(ctx *gin.Context) map[string]string {
|
|||||||
}
|
}
|
||||||
return cookieData
|
return cookieData
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetLogicAfterResponse ...
|
||||||
|
//
|
||||||
|
// Author : go_developer@163.com<白茶清欢>
|
||||||
|
//
|
||||||
|
// Date : 16:54 2025/2/28
|
||||||
|
func (wh *wrapperHandle) GetLogicAfterResponse(ctx *gin.Context) *define.LogicAfterResponse {
|
||||||
|
if nil == ctx || nil == ctx.Request {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
l, exist := ctx.Get(define.LogicAfterResponseKey)
|
||||||
|
if !exist || nil == l {
|
||||||
|
l = &define.LogicAfterResponse{
|
||||||
|
SuccessHookFuncList: make([]func(), 0),
|
||||||
|
FailureHookFuncList: make([]func(), 0),
|
||||||
|
Lock: &sync.RWMutex{},
|
||||||
|
}
|
||||||
|
ctx.Set(define.LogicAfterResponseKey, l)
|
||||||
|
}
|
||||||
|
// 就这么写, key值如果被其他人覆盖成非法值, 此处会直接panic
|
||||||
|
return l.(*define.LogicAfterResponse)
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user