我有以下AJAX调用,简化为尝试并确定问题:
$('#userUpdateForm').submit(function (e) {
$.ajax({
type: "POST",
url: '@Url.Action("submitForm", "Home")',
data: JSON.stringify({
'blue': window.glbBlue,
'eg2': 'eg3'
}),
contentType: "application/json; charset=utf-8",
success: function (result) {
alert("Success");
},
error: function (result) {
alert("A problem occured when submitting the form.");
}
});
e.preventDefault();
});
这会调用以下方法:
[HttpPost]
public ActionResult submitForm(string json)
{
System.Diagnostics.Debug.WriteLine("made it here");
var check = System.Web.Helpers.Json.Decode(json);
System.Diagnostics.Debug.WriteLine(check);
System.Diagnostics.Debug.WriteLine(check.glbBlue);
return View();
}
但是,控制器收到的JSON为null。为什么会这样?我可以在浏览器中看到有一个请求有效负载,其中包含我期望的值。 'Window.glbBlue'是一个全局值,我也知道它已被正确设置,因为警报用于检查其值。
答案 0 :(得分:2)
您发送数据
data: JSON.stringify({
'blue': window.glbBlue,
'eg2': 'eg3'
})
表示您的操作会收到两个参数blue
和eg2
,但您只收到一个未提供的参数json
。因此json
为null
。
您可以将public ActionResult submitForm(string json) {}
更改为public ActionResult submitForm(string blue,string eg2) {}
。
OR
数据:JSON.stringify({json: "something" })