场景
Winform中怎样使用HttpClient调用http的get和post接口并将接口返回json数据解析为实体类:
Winform中怎样使用HttpClient调用http的get和post接口并将接口返回json数据解析为实体类_winform解析json-CSDN博客
上面使用HttpClient调用post接口时使用的HttpContent的格式为 application/x-www-form-urlencoded
对应的代码实现
var body = new FormUrlEncodedContent(new Dictionary<string, string>
{
{"serverName", "zlw"},
{"mineCode", this.textBox_mineCode.Text.Trim().ToString()},
{"targetServer",this.textBox_targetServer.Text