JQuery发布JSON数据抛出错误,"未加引号的标识符' Id'位置0和#34;

时间:2015-10-14 16:45:13

标签: javascript jquery json

使用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");
                }
            });

1 个答案:

答案 0 :(得分:4)

你忘记了引号

var UserModel =
            {
                "Id": "12345",
                "Name": "MyName"
            };