首页 > 解决方案 > asp.net mvc 5.0 中的 ValidateAntiForgeryToken - 如何使用 JSON 和 ajax 传递对象数组

问题描述

似乎该ValidateAntiForgeryToken属性会阻止数据在传递到 MVC 控制器时被正确解析,下面的代码在我删除该ValidateAntiForgeryToken属性但不使用它时有效,控制器操作中的所有参数都被传递,除了翻译数组。

请告知如何在使用ValidateAntiForgeryToken属性时传递对象数组,甚至可能吗?

这是我的代码

C#

 [HttpPost]
 [ValidateAntiForgeryToken]
 public void AddComment( string code, string type, string ecomment, IEnumerable<CommentTranslation> translations) 
  {
            //do something later
   }

评论翻译是

public class CommentTranslation
    {
        public string LangId { get; set; }
        public string LangName { get; set; }
        public string Translation { get; set; }
    }

js

addComment: function (ecomment, type, translations) {


        var data = {           
                code: '',
                type: type,
                ecomment: ecomment,
                translations: translations
        };

        var url = 'CommentsAjax/AddComment';
        return comments.repository.postDataWithToken(data, url);
    },

  postDataWithToken: function (data, url) {
        
        return $.ajax({
            type: 'POST',
            traditional: true,
            contentType: 'application/x-www-form-urlencoded; charset=utf-8',
            data: comments.repository.addAntiForgeryToken(data),
            url: getServerPath() + url
        });
    }


addAntiForgeryToken: function (data) {
    var token = $('input[name="__RequestVerificationToken"]').val();
    data.__RequestVerificationToken = token;
    return data;
},

标签: c#jqueryajaxasp.net-mvc-5antiforgerytoken

解决方案


最终使用FormCollection它你可以一般地将任何东西传递给控制器​​。


推荐阅读