在我的应用程序中,我正在调用基于 .Net 肥皂的 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
});
}
如何添加多个参数..?