我将Json数据发布到Restful Api。
服务器ASP.Net MVC应用程序使用JsonValueProviderFactory自动将数据绑定到模型对象
[HttpPut]
[ActionName("Student")]
public ActionResult PutStudent(Student s)
{
return Content("");
}
只有部分json数据绑定到Student。其他人不是。在MVC应用程序中,如何查看原始发布数据?我无法在HttpContext中找到它。
请帮忙。