我有以下javascript类,我试图传递给ASP.NET MVC控制器
var postParams = {
attributes : [
{
name : '',
description: '',
attributeType : '',
value : ''
}
]
};
postParams.attributes[0] = new Object();
postParams.attributes[0].name = "test";
postParams.attributes[0].description = "test";
postParams.attributes[0].attributeType = "test";
postParams.attributes[0].value = "test";
以下是我调用Controller方法的方法:
var actionURL = "@Url.Action("Save", "Catalog")";
$.ajax({
type: "POST",
url: actionURL,
data: postParams ......
在Controller方面,我已经声明了一个ViewModel,如下所示:
public class AttributeViewModel
{
public string name { get; set; }
public string description { get; set; }
public string attributeType { get; set; }
public string value { get; set; }
}
我的Controller Save方法声明如下:
public JsonResult Save(AttributeViewModel[] attributes)
当我执行属性值时,始终为null。
有什么想法吗?不知道如何开始调试它。
答案 0 :(得分:6)
您可以尝试json.net库来解决您的问题
[JsonFilter(Param = "attributes", JsonDataType = typeof(AttributeViewModel[]))]
public JsonResult Save(AttributeViewModel[] attributes)
在客户:
$.ajax({
type: 'POST',
url: url,
async: true,
data: JSON.stringify(attributes), //!!! Here must be the same name as in controller method
dataType: 'json',
contentType: 'application/json; charset=utf-8',
success: function (data) {
},
error: function (xhr, ajaxOptions, thrownError) {
}
});
答案 1 :(得分:1)