在Asp.Net中获取jQueryAjax返回数据

本文关键字:jQueryAjax 返回 数据 获取 Asp Net | 更新日期: 2023-09-27 18:14:18

我是jQuery的新手,不明白在jQuery中Ajax是如何返回数据的。我有一些简单的功能来获得一些数据,比如下面的

[WebMethod(EnableSession = false)]
protected int SignIn()
{
    return 0;
}

在我的.aspx页面中,我有这个

$(document).ready(function () {
        $("#si").click(function 
            () {
            $.ajax({
                type: "POST",
                url: "SignIn.aspx/SignIn",
                contentType: "application/json",
                success: function (txt) {
                    alert(txt);
                }
            });
        });
    });

但在警报中,我得到了整个SignIn.aspx(所有html标签等等(。如何提醒SignIn((返回的0?感谢

在Asp.Net中获取jQueryAjax返回数据

使SignIn方法为静态和公共方法,并使用以下代码显示警报:alert(txt.d);

您正在向ASPX文件请求数据,我认为应该是ASMX。

查看Dave Ward的帖子,我在帖子中了解了这一切:http://encosia.com/asp-net-web-services-mistake-manual-json-serialization/

我能做的最简单的例子如下:

添加包含的Web服务(ASMX(

using System.Web.Services;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class WebService : System.Web.Services.WebService {
   [WebMethod]
   public int Status(int input) {
      return input + 1;
   }
}

然后在你的HTML中做

<html>
<head>
    <title>Test</title>
    <script src="jquery-1.6.2.min.js" ></script>
</head>
<body>
<script>
  $(function () {
    $.ajax({
      url: 'WebService.asmx/Status',
      data: '{ input: 0 }',
      type: 'POST',
      dataType: 'json',
      contentType: 'application/json',
      success: function (data, status) {
        alert(data);
        alert(typeof data);
      }
    });
  });
</script>
</body>
</html>

在ajax调用中,数据中定义的字符串是web方法的输入。名称必须匹配。在成功回调中,第一个警报显示返回的值(输入加一(,第二个警报显示它是一个数字,而不是字符串。由于数据类型设置为JSON,因此web方法返回JSON,从而允许正确键入数据。

希望这能有所帮助。

试试这个例子。我已经将id从aspx传递给了处理程序,并刚刚从那里返回,再次向aspx显示服务器端数据

这是一个示例。。。。。

处理程序代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TestProject
{
    /// <summary>
    /// Summary description for TestHandler1
    /// </summary>
    public class TestHandler1 : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            string id = context.Request["id"];
            context.Response.ContentType = "text/plain";
            context.Response.Write(id);
        }
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

和aspx

    <html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  </head>
<body>
    <form id="form1" runat="server">
    </form>
    <script type="text/javascript">
        $(function () {
            $.ajax({
                type: 'POST',
                url: 'TestHandler.ashx?id='+ 1,
                data: 'id=' + 1,
                success: function (msg) {
                    alert(msg);
                }
            });
        });
    </script>
</body>
</html>