feat: 修复返回值解析的BUG

This commit is contained in:
2025-12-15 16:12:27 +08:00
parent d576de9e12
commit c9859c0318

View File

@ -146,7 +146,7 @@ func (r *Response) fillResponseBody(reqCfg *define.Request, response *define.Res
}) })
} }
} }
_ = serialize.JSON.UnmarshalWithNumber([]byte(response.Data), &response.Body) _ = serialize.JSON.UnmarshalWithNumber([]byte(response.Data), reqCfg.DataReceiver)
} }
response.ExtendData = map[string]string{} response.ExtendData = map[string]string{}