如何将json数据发送到Web服务并获得响应

时间:2013-04-10 19:03:07

标签: asp.net json jquery

我正在使用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”}

现在我的问题是 -

  1. 如何在我的Web服务中获取id(在本例中为8),以便我可以将其存储在我的数据库中。
  2. 为什么它总是将响应作为 d:Hello World ,在哪里定义?
  3. 如何在ajax调用的成功函数中再次向js表示我想要显示的js(假设我想在警报中再次显示8,我需要在Web服务和警报框中编写什么) 。
  4. 以及关于 tempuri.org 的内容,我是否需要在我的案例中进行更改?

0 个答案:

没有答案