是否可以调用接受5个字符串参数而不通过json发送的webservice? (这是推荐的)我创建了一个web服务,其方法接受5个字符串参数..我有我的jquery
$.ajax({
type: "POST",
url: "Service.aspx/CreateClient",
data: "{}",
contentType: "application/json; charset=utf-8", //// ERMMM ???
dataType: "json", // ERMMM?
success: function(msg) {
alert(msg.d);
},
error: function() {
alert('error');
}
});
不使用jquery的旧方法就是这样做
this.para.add("Name", name);
this.para.add("ClientNum", clnum);
this.para.add("Email", email);
this.para.add("Register", register);
this.para.add("Message", message);
SOAPClient.invoke(this.url, "MyService.aspx/CreateClient", this.para, true, this.completeDone, this);
在另一端它落地并填满所有参数......
推荐的方式是什么?
答案 0 :(得分:1)
为什么不使用查询字符串变量并避免SOAP协议的开销?