httpc icon indicating copy to clipboard operation
httpc copied to clipboard

SetData方法貌似没有

Open LazyYed opened this issue 2 years ago • 3 comments

LazyYed avatar Jun 05 '22 07:06 LazyYed

Request 中没有SetData方法 req := httpc.NewRequest(client) req.SetData("","")方法不可以

LazyYed avatar Jun 05 '22 08:06 LazyYed

_,body,err:=req.SetUrl("https://api.m.jd.com/client.action?functionId=queryMaterialProducts&client=wh5").SetMethod("get").Send().End()

这个的body返回空是什么原因呢

eason-wang0000 avatar Aug 19 '22 04:08 eason-wang0000

使用body.NewUrlEncode() 例如: b := body.NewUrlEncode() b.setData("","") req.SetBody(b)

eeevanyip avatar Nov 26 '22 10:11 eeevanyip