HTTP通过PostAsJsonAsync发布多个对象

本文关键字:布多个 对象 PostAsJsonAsync 通过 HTTP | 更新日期: 2023-09-27 18:25:38

我正在使用HttpClient和一些WebAPI。

我需要将多个对象发送到POST,以下是我的POST方法的声明方式:

public string Post(Models.Client value, App.ControlCenter.Models.Company c) 
{
    ...
}

以下是我如何调用WebAPI:

using (var client = new HttpClient())
{
    client.BaseAddress = new Uri("http://localhost/");
    client.DefaultRequestHeaders.Accept.Clear();
    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
    var s = client
       .PostAsJsonAsync("api/Client/", c)
       .Result
       .Content.ReadAsAsync<App.ControlCenter.Models.RolDTO>().Result;
    return View();
}

我需要做的是发送Client对象和Company,以便我的Post方法工作。

HTTP通过PostAsJsonAsync发布多个对象

客户端

您需要创建一个DTO类,该类具有Models.ClientApp.Control.Models.Company类型的两个属性

public class DTO.ComplexObject  
{     
  public Models.Client tClientModel { get; set; }
  public App.ControlCenter.Models.Company tCompany{ get; set; }
}

然后填充ComplexObject对象(即TComplexObject)并使用

HttpResponseMessage tResponse = tHttpClient.PostAsJsonAsync(url,TComplexObject).Result;

API

[HttpPost]
public HttpResponseMessage AddData(DTO.ComplexObject tComplexObject)
{