我正在使用 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"}
现在我的问题是——
- 如何在我的 Web 服务中获取 id(在这种情况下为 8),以便我可以将其存储在我的数据库中。
- 为什么它总是以d:Hello World的形式给出响应,它是在哪里定义的?
- 如何在ajax调用的成功功能中再次向我想在警报框中显示的js发送正确的响应(假设我想在警报中再次显示8,我需要在Web服务和警报框中写什么)。
- tempuri.org是怎么回事,我需要更改它吗?