gpt4 book ai didi

c# - Javascript json 错误 Invalid JSON primitive : strJson

转载 作者:太空宇宙 更新时间:2023-11-03 21:40:06 25 4
gpt4 key购买 nike

我写了一个 jQuery 演示来发布 JSON:

$.ajax({
url: "RoleFunc.aspx/Vonvert",
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: 'json',
data: { "strJson": json },

success: function(result) {
alert(result);
},
error: function() {
alert("error");
}
});

当我使用该函数时,Firebug View 显示为错误消息,如 Invalid JSON primitive: strJson.

我测试了JSON,结果是

{ "strJsonssss":[{"Role_ID":"2","Customer_ID":"155","Brands":"Chloe;","Country_ID":"96;"}]}

我的 C# 函数是

[WebMethod]
public static int Vonvert(string strJson)
{
//DataSet dt1 = JsonConvert.DeserializeObject<DataSet>(strJsonssss);

return 1;
}

我调试了它,但它从未进入函数,所以...任何人都可以帮助我...

最佳答案

您缺少结束语:

{ "strJsonssss":[{"Role_ID":"2","Customer_ID":"155","Brands":"Chloe;","Country_ID":"96;"}]}
--------------^

关于c# - Javascript json 错误 Invalid JSON primitive : strJson,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19785692/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com