我要去香蕉试图找出如何序列化这个(在MVC 3中):
// 1.我在视图中加载了产品数组:
var products = [];
if (quantity > 0) {
products.push({ 'id': id, 'quantity': quantity });
}
// 2.然后我发布一堆价值以及产品,如下所示:
$.ajax({
type: "POST",
url: '/Orders/Create/',
data:
{
'ShipToPersonId': shipToPersonId,
'ShipToPersonType': selectedPersonType,
'ShippingAddressId': shipToAddressId,
'ShippingInstructions': 'Not yet implemented',
'LineItems': products,
'OrderOwnerId': selectedOnBehalfOfPersonId
},
dataType: "json",
success: function (data) {
alert('Saved: ' + data);
},
error: function (data) {
alert('failed:' + data);
}
});
// 3.我的控制器如下所示:
public JsonResult Create(
int ShipToPersonId,
string ShipToPersonType,
int ShippingAddressId,
string ShippingInstructions,
List<LineItem> LineItems,
int OrderOwnerId)
{...}
// 4. LineItem类:
public class LineItem{
public string id {get;set;}
public string quantity { get; set; }
}
在控制器函数中,除LineItem列表外,所有值都正确传递;它具有正确的元素数,但id和quantity值为null。
我通过Fiddler打电话,这就是我得到的:
[Fiddler WebForms View]
=================================
Body | Value
========================|========
LineItems[0][id] | 50
LineItems[0][quantity] | 10
LineItems[1][id] | 46
LineItems[1][quantity] | 20
LineItems[2][id] | 48
LineItems[2][quantity] | 30
LineItems[3][id] | 30
LineItems[3][quantity] | 50
[Fiddler QueryString View]
ShipToPersonId=533
&ShipToPersonType=Rep
&ShippingAddressId=517
&ShippingInstructions=Not+yet+implemented
&LineItems%5B0%5D%5Bid%5D=50&LineItems%5B0%5D%5Bquantity%5D=10
&LineItems%5B1%5D%5Bid%5D=46&LineItems%5B1%5D%5Bquantity%5D=20
&LineItems%5B2%5D%5Bid%5D=48&LineItems%5B2%5D%5Bquantity%5D=30
&LineItems%5B3%5D%5Bid%5D=30&LineItems%5B3%5D%5Bquantity%5D=50
&OrderOwnerId=533
显然,序列化字符串和控制器参数不是“兼容的”。我没有在视图中正确格式化产品数组,还是控制器中的行项列表和类不正确,或者两者兼而有之?
有人可以对此有所了解吗?谢谢!
有人在这吗?
答案 0 :(得分:0)
Here是你的答案。看起来您需要在操作之上使用属性或使用插件将json序列化为默认模型绑定器可以理解的内容。
另外,当您在ajax请求中将其设置为数据时,您是否尝试过JSON.stringify({'foo','bar'})?