使用Fiddler监视Jquery帖子我在fiddler中收到错误。
未加引用的标识符' Id'在第0位
我错过了什么?
var UserModel =
{
Id: "12345",
Name: "MyName"
};
$.ajax({
type: "POST",
url: '@Url.Action("MyAction")',
data: UserModel,
datatype: 'json',
contentType: "application/json",
success: function (response) {
alert("Success");
}
});
答案 0 :(得分:4)
var UserModel =
{
"Id": "12345",
"Name": "MyName"
};