JSON 无效原语

JSON Invalide primitive

我想在函数 test() 中将我的座位号传递给 TryJSIN.aspx。 但是我有错误,当我使用类型 'GET' 然后我有错误

"Invalid JSON primitive: 1-9."

1-9 是 noSeat 值。 但是当我更改为 'POST' 时出现错误

An attempt was made to call the method 'test' using a POST request, which is not allowed.

请检查我的以下代码。这是我使用 get type

的时候
  var sid = jQuery(this).attr('id');
    $.ajax({
        url: "TryJSON.aspx/test",
        type: "GET",
        data: {noSeat: sid},
        contentType: "application/json; charset=utf-8",

        success: function (response) {
          // var arr = JSON.parse(response.d);
            console.log(arr);            
        },
        error: function () {
            alert("sorry, there was a problem!");
            console.log("error");
        },
        complete: function () {
            console.log("completed");
        }

    }); 

和下面的 ajax 当我使用 POST 类型

var sid = jQuery(this).attr('id');
    $.ajax({
        url: "TryJSON.aspx/test",
        type: "POST",
        data: JSON.stringify({'noSeat': sid}),
        contentType: "application/json; charset=utf-8",
        success: function (response) {
          // var arr = JSON.parse(response.d);
            console.log(arr);            
        },
        error: function () {
            alert("sorry, there was a problem!");
            console.log("error");
        },
        complete: function () {
            console.log("completed");
        }

    });

这是我的 C# 代码

[WebMethod]
    [ScriptMethod(UseHttpGet = true)]
    public static string test(string noSeat)
    {
        return noSeat;
    }

请帮助我。我是 c# ajax 和 jQuery 的新手。所以我需要很多帮助

更新: 我在第一次评论后编辑我的代码。但它显示相同。

[WebMethod]
    [ScriptMethod(UseHttpGet = true)]
    public static string test(string noSeat)
    {
        JavaScriptSerializer serializer = new JavaScriptSerializer();
        return serializer.Serialize(noSeat).ToString();
    }

当我使用POST时,我不允许使用[ScriptMethod(UseHttpGet = true)],因为它用于GET类型。那么当我使用 contentType: "application/json; charset=utf-8" 时数据必须使用 JSON.stringify 因为它认为我发送 JSON 而我发送字符串数据。所以我需要先将其转换为 JSON。

var sid = jQuery(this).attr('id');
    //console.log(sid);
    $.ajax({
        url: "TryJSON.aspx/test",
        type: "post",
        data: JSON.stringify({ 'noSeat': sid }),
        contentType: "application/json; charset=utf-8",
        success: function (response) {
            var arr = JSON.parse(response.d);
            objData = new Array();
            objData = arr;
            for (i = 0; i < objData.length; i++)
            {                 
                alert(objData[i].noBooking +" "+ objData[i].noSeat);
            }                                           
        },
        error: function () {
            alert("sorry, there was a problem!");
            console.log("error");
        },
        complete: function () {
            console.log("completed");
        }

这是在 C# 上的解决方法

[WebMethod]
   // [ScriptMethod(UseHttpGet = true)]
    public static string test(string noSeat)
    {
        SqlConnection conn = DBConnection.getConnection();
        SqlCommand cmd;
        SqlDataReader dr;
        conn.Open();
        string sql = "Select noBooking,noSeat FROM booking WHERE noSeat = '" + noSeat +"' AND statusBooked = 1";
        cmd = new SqlCommand(sql, conn);
        dr = cmd.ExecuteReader();
        List<booking> BookList = new List<booking>();
        while (dr.Read())
        {
            booking bookClass = new booking();
            bookClass.noBooking =(int)dr[0];
            bookClass.noSeat = dr[1].ToString();
            BookList.Add(bookClass);
        }
        JavaScriptSerializer serializer = new JavaScriptSerializer();
        return serializer.Serialize(BookList).ToString();
    }