MVC 3 API에 대해 매우 기본적인 REST 호출을 시도 중이며 전달한 매개 변수가 조치 메소드에 바인딩되지 않았습니다.
고객
var request = new RestRequest(Method.POST);
request.Resource = "Api/Score";
request.RequestFormat = DataFormat.Json;
request.AddBody(request.JsonSerializer.Serialize(new { A = "foo", B = "bar" }));
RestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
섬기는 사람
public class ScoreInputModel
{
public string A { get; set; }
public string B { get; set; }
}
// Api/Score
public JsonResult Score(ScoreInputModel input)
{
// input.A and input.B are empty when called with RestSharp
}
여기에 뭔가 빠졌습니까?