jQuery Ajax帖子向我的MVC控制器发送null

前端之家收集整理的这篇文章主要介绍了jQuery Ajax帖子向我的MVC控制器发送null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我不确定为什么会这样.我有一个字符串数组应该发送到期望字符串数组的控制器操作.这是我的jQuery:

  1. $.post("/@Model.Controller/@Model.Action",{ "choices": ajax },function (result) {
  2. $("#label" + "@Model.Id").html(result);
  3. });

这是我的控制器动作:

  1. public JsonResult UpdateMultipleType(string[] choices)
  2. {
  3. return Json(choices);
  4. }

我查看了Firebug,在Post标签中,标题为:

  1. Parametersapplication/x-www-form-urlencoded
  2. choices[] Comedy
  3. choices[] Thriller
  4. choices[] Action
  5. choices[] Adventure

我已经调试并确认它正在命中UpdateMultipleType,并且在调用该操作时字符串数组“choices”为null.调用会通过,但由于我们返回null,因此在调用完成后出现Javascript错误.

我不知道为什么我的控制器动作被发送为null,因为很明显有一个叫做选择的数组被发送过来.

最佳答案
你需要告诉jQuery使用传统的构建ajax数据的方式.

把它放在你的文件中:

  1. jQuery.ajaxSettings.traditional = true;

猜你在找的jQuery相关文章