使用查询 asp.net-mvc 控制器操作来 post 对象数组的正确方法是什么?
What is the correct way to post array of objects using query to an asp.net-mvc controller action?
我有一组数据:
var myArray = [{"id": 1, "name", "John"},{"id": 2, "name", "Joe"},{"id": 3, "name", "Bill"}]
$.post("/MyController/Update", myArray, function (data) {
alert("Complete");
});
这是我的 asp.net-mvc 控制器操作
public ActionResult Update(List<Person> people)
{
return Json(new {Success = true});
}
public class Person
{
public int id {get;set;}
public string name {get;set;}
}
我也试过:
var paramString = JSON.stringify({ people: myArray});
$.post("/MyController/Update", paramString , function (data) {
alert("Complete");
});
但是当我查看服务器上的人员参数时,我要么看到:
- 无
- 包含 3 个项目的数组,但 Id 的值始终为 0,而 Name 的值始终为空字符串
对我在这里做错了什么有什么建议吗?
您的 javascipt 对象属性没有索引器,因此您需要使用 ajax contentType: "application/json"
选项并将对象字符串化
var myArray = [{"id": 1, "name", "John"},{"id": 2, "name", "Joe"},{"id": 3, "name", "Bill"}]
$.ajax({
type: 'post',
url: '@Url.Action("Update", "MyController")', // don't hardcode your url's!
contentType: "application/json; charset=utf-8",
data: JSON.stringify({ people: myArray }),
success: function (data) {
....
}
})
旁注。以下对象将 post 返回
var myArray = { people[0].id: 1, people[0].name: "John", people[1].id: 2, people[1].name: "Joe" }
使用
$.post('@Url.Action("Update", "MyController")', myArray, function() {`
我个人最喜欢使用 JSON.NET
(通过 NuGet
可用)。
您可以在您的 Action 上定义它期望 JObject
或 JArray
。
然后在 Action 中将您的输入转换为您期望的类型。
从 js 的角度来看,您只需正常执行 post。
示例:
public ActionResult Update(JArray input)
{
var persons = input.Select(x=>x.ToObject<Person>()) // This will return an `Enumerable<Person>`
//Do your other stuff here
return Json(new {Success = true});
}
public class Person
{
public int id {get;set;}
public string name {get;set;}
}
试试这个
首先像这样改变你的数组
var myArray = [{"id": 1, "name": "John"},{"id": 2, "name": "Joe"},{"id": 3, "name": "Bill"}] ;
然后尝试使用 $.ajax()
发帖
$.ajax({
url: "/MyController/Update",
type: "POST",
datatype: 'json',
contentType: "application/json",
data: JSON.stringify(myArray),
success: function (data) {
alert("Complete");
}
});
我有一组数据:
var myArray = [{"id": 1, "name", "John"},{"id": 2, "name", "Joe"},{"id": 3, "name", "Bill"}]
$.post("/MyController/Update", myArray, function (data) {
alert("Complete");
});
这是我的 asp.net-mvc 控制器操作
public ActionResult Update(List<Person> people)
{
return Json(new {Success = true});
}
public class Person
{
public int id {get;set;}
public string name {get;set;}
}
我也试过:
var paramString = JSON.stringify({ people: myArray});
$.post("/MyController/Update", paramString , function (data) {
alert("Complete");
});
但是当我查看服务器上的人员参数时,我要么看到:
- 无
- 包含 3 个项目的数组,但 Id 的值始终为 0,而 Name 的值始终为空字符串
对我在这里做错了什么有什么建议吗?
您的 javascipt 对象属性没有索引器,因此您需要使用 ajax contentType: "application/json"
选项并将对象字符串化
var myArray = [{"id": 1, "name", "John"},{"id": 2, "name", "Joe"},{"id": 3, "name", "Bill"}]
$.ajax({
type: 'post',
url: '@Url.Action("Update", "MyController")', // don't hardcode your url's!
contentType: "application/json; charset=utf-8",
data: JSON.stringify({ people: myArray }),
success: function (data) {
....
}
})
旁注。以下对象将 post 返回
var myArray = { people[0].id: 1, people[0].name: "John", people[1].id: 2, people[1].name: "Joe" }
使用
$.post('@Url.Action("Update", "MyController")', myArray, function() {`
我个人最喜欢使用 JSON.NET
(通过 NuGet
可用)。
您可以在您的 Action 上定义它期望 JObject
或 JArray
。
然后在 Action 中将您的输入转换为您期望的类型。
从 js 的角度来看,您只需正常执行 post。
示例:
public ActionResult Update(JArray input)
{
var persons = input.Select(x=>x.ToObject<Person>()) // This will return an `Enumerable<Person>`
//Do your other stuff here
return Json(new {Success = true});
}
public class Person
{
public int id {get;set;}
public string name {get;set;}
}
试试这个
首先像这样改变你的数组
var myArray = [{"id": 1, "name": "John"},{"id": 2, "name": "Joe"},{"id": 3, "name": "Bill"}] ;
然后尝试使用 $.ajax()
发帖$.ajax({
url: "/MyController/Update",
type: "POST",
datatype: 'json',
contentType: "application/json",
data: JSON.stringify(myArray),
success: function (data) {
alert("Complete");
}
});