我正在使用jquery ajax将JSON数据发送到Web服务。
我的JS代码是 -
function addToCart(id)
{
$.ajax({
type: "POST",
url: "WebService1.asmx/HelloWorld",
contentType: "application/json; charset=utf-8",
data: "{id:"+id+"}",
dataType: "json",
success: function (data) {
//alert(data.d);
}
});
}
和WebService1.asmx是 -
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
//[System.Web.Script.Services.ScriptService]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
public static int HelloWorld(int id)
{
return id;
}
}
如果我将js函数称为addToCart(8),则firebug中 post 标签的内容为 - 的 {ID:8}
并且回应是 - {“d”:“Hello World”}
现在我的问题是 -