带out参数的WebService方法如何去调用呢? 在javascript里调用~ 20
例如:webservice里[WebMethod]publicstringGetAddress(stringid,outstringjson){/*......*/}如何...
例如:webservice里
[WebMethod]
public string GetAddress(string id, out string json)
{
/*......*/
}
如何用jquery ajax发送请求调用这个方法呢?
$.post("http://localhost:2467/Service1.asmx/GetAddress", { id: "1"}, function(result, state) {
alert(result);
});
这样是发送不了请求的 即使用
$.post("http://localhost:2467/Service1.asmx/GetAddress", { id: "1",json:""}, function(result, state) {
alert(result);
});
也是发送不了请求的~ 有没有方法调用呢? 展开
[WebMethod]
public string GetAddress(string id, out string json)
{
/*......*/
}
如何用jquery ajax发送请求调用这个方法呢?
$.post("http://localhost:2467/Service1.asmx/GetAddress", { id: "1"}, function(result, state) {
alert(result);
});
这样是发送不了请求的 即使用
$.post("http://localhost:2467/Service1.asmx/GetAddress", { id: "1",json:""}, function(result, state) {
alert(result);
});
也是发送不了请求的~ 有没有方法调用呢? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询