httplib icon indicating copy to clipboard operation
httplib copied to clipboard

How do you get the return information using post?

Open guaicaiboshi opened this issue 5 years ago • 0 comments

How do you get the return information using post?

Now when I do that it's unusual var param = JsonConvert.SerializeObject(new { stationCodes = "", version = 1 }); logDataService.Info(param); Http.Post(Url + "/metadata/gasStation").Form(param).OnSuccess( result => { logDataService.Info(result); }).OnFail( webException => { logDataService.Error(webException.Message); }) .Go();

guaicaiboshi avatar Apr 24 '19 07:04 guaicaiboshi