jquery ajax 调用webservice 带参数时出错,弄了几天还没好,帮忙解决一下
出错提示如下:System.InvalidOperationException:请求格式无效:application/json;charset=utf-8。在System...
出错提示如下:
System.InvalidOperationException: 请求格式无效: application/json;charset=utf-8。 在 System.Web.Services.Protocols.HttpServerProtocol.ReadParameters() 在 System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
$.ajax({
type:"post",
contentType:"application/json;charset=utf-8",
url:"CheckRemoveClass.asmx/CheckClass1",
data:"{username:abcd}",
dataType:"xml",
success:function(result){
alert($(result).find("string").text());
},
error:function(e)
{
$("#cw").html(e.responseText);
}
});
webservice:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
[System.Web.Script.Services.ScriptService]
public class CheckRemoveClass1 : System.Web.Services.WebService
{
[WebMethod]
public string CheckClass1(string username)
{
return "hello " + username;
}
}
以上例子不带参数没问题,一带参数就出现提示错误! 展开
System.InvalidOperationException: 请求格式无效: application/json;charset=utf-8。 在 System.Web.Services.Protocols.HttpServerProtocol.ReadParameters() 在 System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
$.ajax({
type:"post",
contentType:"application/json;charset=utf-8",
url:"CheckRemoveClass.asmx/CheckClass1",
data:"{username:abcd}",
dataType:"xml",
success:function(result){
alert($(result).find("string").text());
},
error:function(e)
{
$("#cw").html(e.responseText);
}
});
webservice:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
[System.Web.Script.Services.ScriptService]
public class CheckRemoveClass1 : System.Web.Services.WebService
{
[WebMethod]
public string CheckClass1(string username)
{
return "hello " + username;
}
}
以上例子不带参数没问题,一带参数就出现提示错误! 展开
展开全部
$.ajax({
type: "post",
contentType: "application/json",
url: "../WebRequest/S_aaa.asmx/helloword",
data: "{code:'"+Code+"'}",
dataType: "json",
success: function(result) {
alert(result.d);
},
error: function(event, XMLHttpRequest, ajaxOptions, thrownError) {
}
});
这两个参数你自己不会看吗?
data: "{code:'"+Code+"'}",
dataType: "json",
type: "post",
contentType: "application/json",
url: "../WebRequest/S_aaa.asmx/helloword",
data: "{code:'"+Code+"'}",
dataType: "json",
success: function(result) {
alert(result.d);
},
error: function(event, XMLHttpRequest, ajaxOptions, thrownError) {
}
});
这两个参数你自己不会看吗?
data: "{code:'"+Code+"'}",
dataType: "json",
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
post去过的data是怎么写的?
这样格式的试试
data: "{userName:'" + userName + "',pw:'" + pw+"'}"
没见具体代码不好说
data:"{username:abcd}", 改成
data:"{\"username\":\"abcd\"}", 这个没问题,我就是这样用的
或者data:"{username:‘abcd’}",
直接abcd肯定有问题
这样格式的试试
data: "{userName:'" + userName + "',pw:'" + pw+"'}"
没见具体代码不好说
data:"{username:abcd}", 改成
data:"{\"username\":\"abcd\"}", 这个没问题,我就是这样用的
或者data:"{username:‘abcd’}",
直接abcd肯定有问题
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
感觉以下两个已经够具体了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询