具有多个参数的Web服务调用

时间:2012-07-12 05:02:04

标签: web-services .net

在我的应用程序中,我正在调用基于.net soap的webservices。 我的Web服务调用函数是:

function CallService5() {
            $.ajax({
                type: "POST",
                url: "http://10.0.2.2:51434/Service1.asmx/GetAllTableStatus",
        dataType: "json",
        data: "{}",

        contentType: "application/json; charset=utf-8",
        success: OnSuccess,
        error: OnError
        });
    }

如何添加多个参数..?

3 个答案:

答案 0 :(得分:1)

我认为你可以像这样使用

var firstName = document.getElementById("txtFirstName").value;
var lastName = document.getElementById("txtLastName").value;
data : "{'firstName':firstName,'lastName':lastName}"

答案 1 :(得分:0)

您可以在服务的网址部分

中添加参数作为查询字符串
"http://10.0.2.2:51434/Service1.asmx/GetAllTableStatus?para =val"

答案 2 :(得分:0)