Revert "解决后续data解析到空map为nil的问题"

This reverts commit f3e1ad74b5.
This commit is contained in:
liaoyulong
2025-11-19 14:56:12 +08:00
parent b9a7970699
commit b8cc7345af

View File

@@ -15,7 +15,6 @@ import (
service2 "github.com/ayflying/utility_go/service"
"github.com/ayflying/utility_go/tools"
"github.com/gogf/gf/v2/container/gset"
"github.com/gogf/gf/v2/container/gvar"
"github.com/gogf/gf/v2/errors/gerror"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gctx"
@@ -69,8 +68,8 @@ func (s *sGameAct) Info(uid int64, actId int) (data *g.Var, err error) {
Uid: uid,
ActId: actId,
}).Fields("action").OrderDesc("updated_at").Value()
// getDb.Scan(&data)
data = gvar.New(getDb)
getDb.Scan(&data)
if data == nil || data.IsEmpty() {
return
}