大概接受输入的操作仅用于此特定目的,因此您可以只使用该
FormCollection对象,然后将该对象的所有json属性添加到字符串集合中。
[HttpPost]public JsonResult JsonAction(FormCollection collection){ string id = collection["id"]; return this.Json(null);}
大概接受输入的操作仅用于此特定目的,因此您可以只使用该
FormCollection对象,然后将该对象的所有json属性添加到字符串集合中。
[HttpPost]public JsonResult JsonAction(FormCollection collection){ string id = collection["id"]; return this.Json(null);}