This commit is contained in:
aozhiwei 2024-06-15 21:22:48 +08:00
parent 5698e36b05
commit 4dfdb049c6

View File

@ -2,6 +2,7 @@ package cache
import (
"f5"
"mt"
"sync"
"fmt"
"main/common"
@ -35,7 +36,17 @@ func (this *cacheMgr) internalGetNft(dto *common.NftDto) {
if p, ok := this.nftHash.Load(key); ok {
dto.NftCache = p.(*nft)
} else {
f5.GetHttpCliMgr().SendGoStyleRequest(
mt.Table.Config.GetGameApiUrl() + "/webapp/index.php",
map[string]string{
"c": "OutAppNft",
"a": "nftDetail",
"nft_type": "gold_bullion",
//"net_id": netId,
//"token_id": tokenId,
},
func (rsp f5.HttpCliResponse) {
})
}
}
}