简体   繁体   中英

getting error on passing string as json object in ajax jquery

I'm trying to pass a string in code behind method using ajax jquery but getting a stupid error. If I pass integer only then it works fine but in case of string it's not working this is what i've tried csharp code

public static string GetQuickVD(string key)
{
    return key.ToString();
}

jquery

$(document).ready(function () {
     GetQuickVL();
});
function GetQuickVL() {
     var Nid = new Array();
     for (var key in localStorage) {
         if (key.substring(0, 4) == "vhs-") {
             Nid += key.replace('vhs-', '') + ",";
         }
     }
     $.ajax({
         type: "POST",
         url: "QuickViewList.aspx/GetQuickVD",
         data: '{key: ' +'345,' + '}',
         contentType: "application/json; charset=utf-8",
         dataType: "json",
         success: OnSuccess,
         failure: function (response) {
              alert(response.response);
         },
         error: function (response) {
              alert(response.error);
         }
      });
}
function OnSuccess(response) {
      alert(response.d);
}

use like this

data: {key:  "345" }

You can also use like,

type: "GET",
url: "QuickViewList.aspx/GetQuickVD?key=355",

Edit

data: JSON.stringify({"key":  "345"}),

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM