获取PostAsync请求的body

new HttpClient().PostAsync封装参数 这个请求是异步请求,要这样获取返回的body
var responseContent = response.Content.ReadAsStringAsync().Result;

猜你喜欢

转载自blog.csdn.net/q1923408717/article/details/107767621