5

ASP.NET MVC コントローラーに渡そうとしている次の JavaScript クラスがあります。

 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   ......

コントローラー側では、次のように 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 になります。

何か案は?これのデバッグを開始する方法さえわかりません。

4

2 に答える 2

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) {

        }
    });
于 2012-04-06T11:16:30.817 に答える
1

traditional : trueajax 呼び出しに追加する必要があるようです。こちらこちらをご覧ください

 $.ajax({ 
                traditional: true,
                type: "POST", 
                url: actionURL, 
                data:  postParams   
于 2012-04-06T11:19:01.383 に答える