Get response from PostAsJsonAsync

后端 未结 5 2009
清歌不尽
清歌不尽 2020-12-08 07:47

I have this line of code

var response = new HttpClient().PostAsJsonAsync(posturi, model).Result;

The Called WebAPI controller returns a bo

5条回答
  •  粉色の甜心
    2020-12-08 08:12

    Continue to get from content:

    var httpClient = new HttpClient();
    var response = httpClient.PostAsJsonAsync(posturi, model).Result;
    bool returnValue = response.Content.ReadAsAsync().Result;
    

    But, this is really naive approach for quick way to get result. PostAsJsonAsync and ReadAsAsync is not designed to do like this, they are designed to support async await programming, so your code should be:

    var httpClient = new HttpClient();
    var response = await httpClient.PostAsJsonAsync(posturi, model);
    bool returnValue = await response.Content.ReadAsAsync();
    

    Also, instead of using a flag to check whether an object is saved or not, you should make use of HTTP codes by returning 200 OK to determine that saving is successfully.

提交回复
热议问题