我正在尝试将 C# 对象传递给 Web api 控制器。该 api 被配置为存储发布给它的 Product 类型的对象。我已经使用 Jquery Ajax 方法成功添加了对象,现在我正试图在 C# 中获得相同的结果。
我创建了一个简单的控制台应用程序来向 api 发送一个 Post 请求:
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public string Category { get; set; }
public decimal Price { get; set; }
}
static void Main(string[] args)
{
string apiUrl = @"http://localhost:3393/api/products";
var client = new HttpClient();
client.PostAsJsonAsync<Product>(apiUrl, new Product() { Id = 2, Name = "Jeans", Price = 200, Category = "Clothing" });
}
postproduct 方法永远不会被调用,如何将这个对象发送到控制器?
用于添加项目的方法:
public HttpResponseMessage PostProduct([FromBody]Product item)
{
item = repository.Add(item);
var response = Request.CreateResponse<Product>(HttpStatusCode.Created, item);
string uri = Url.Link("DefaultApi", new { id = item.Id });
response.Headers.Location = new Uri(uri);
return response;
}