繁体   English   中英

asp.net mvc 5.0 中的 ValidateAntiForgeryToken - 如何使用 JSON 和 ajax 传递对象数组

[英]ValidateAntiForgeryToken in asp.net mvc 5.0 - how to pass array of objects with JSON and ajax

似乎ValidateAntiForgeryToken属性会阻止数据在传递给 MVC Controller 时被正确解析,当我删除ValidateAntiForgeryToken属性但不能使用它时,下面的代码有效,controller 动作中的所有参数都被传递,除了翻译数组。

请告知如何在使用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;
},

最终使用FormCollection ,您可以将任何东西一般地传递到 Controller 中。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM