MVC 4 Web Api Post
本文关键字:Post Api Web MVC | 更新日期: 2023-09-27 18:02:21
我想从远程客户端插入,因为我需要通过http发送数据。
我可以正确使用getPerformances()
和httpClient
api/performances?date={0}
我想问我的PerformancesController
内部的postPorformances()
实现是否正确,如果它是如何从客户端调用它?
这是我的实现:
public class PerformancesController : ApiController
{
// GET api/performances
public IEnumerable<Performance> getPerformances(DateTime date)
{
return DataProvider.Instance.getPerformances(date);
}
public HttpResponseMessage postPerformances(Performance p)
{
DataProvider.Instance.insertPerformance(p);
var response = Request.CreateResponse<Performance>(HttpStatusCode.Created, p);
return response;
}
}
public class Performance {
public int Id {get;set;}
public DateTime Date {get;set;}
public decimal Value {get;set;}
}
我试过这个,但我不确定:
private readonly HttpClient _client;
string request = String.Format("api/performances");
var jsonString = "{'"Date'":" + p.Date + ",'"Value'":" + p.Value + "}";
var httpContent = new StringContent(jsonString, Encoding.UTF8, "application/json");
var message = await _client.PutAsync(request, httpContent);
您可以使用HttpClient
调用这个方法:
using (var client = new HttpClient())
{
client.BaseAddress = new Uri("http://example.com");
var result = client.PostAsync("/api/performances", new
{
id = 1,
date = DateTime.Now,
value = 1.5
}, new JsonMediaTypeFormatter()).Result;
if (result.IsSuccessStatusCode)
{
Console.writeLine("Performance instance successfully sent to the API");
}
else
{
string content = result.Content.ReadAsStringAsync().Result;
Console.WriteLine("oops, an error occurred, here's the raw response: {0}", content);
}
}
在这个例子中,我使用通用的PostAsync<T>
方法,允许我发送任何对象作为第二个参数,并选择媒体类型格式化器。在这里,我使用了一个匿名对象,它模仿了服务器和JsonMediaTypeFormatter
上的Performance
模型的相同结构。当然,您可以通过将Performance
模型放在合同项目中,在客户端和服务器之间共享该模型,以便服务器上的更改也会自动反映到客户端。
边注:c#命名约定要求方法名以大写字母开头。所以getPerformances
应该是GetPerformances
或者更好的Get
postPerformances
应该是PostPerformances
或者更好的Post