jquery 没有来自通用处理程序的响应

z2acfund  于 2023-06-05  发布在  jQuery
关注(0)|答案(2)|浏览(67)

我在我的AjaxHandler.ashx有问题,因为上下文。请求[“动作”]是空的,当我发送它使用JQuery调用有人能帮助我吗
注意:我使用的是html控制器而不是asp,net服务器控制器

<script type="text/javascript">

    $(function () {

        $("#btnSearch").click(function () {

            /*var skill = $("#ddlSkills option:selected").val();
            var types = $("#ddlTypes option:selected").val();
            var topics = $("#ddlTopics option:selected").val();
            var sortBy = $("#ddlSortBy option:selected").val();
            */
            $.ajax({
                url: "../ideapark/DesktopModules/ResourcesFilter/AjaxHandler.ashx",
                contentType: "application/json; charset=uft-8",
                type: "POST",
                data: $('form').serialize(),
                success: function(data) {
                    for(var i = 0; i < data.length; i++)
                    {
                        //t ajax handler recollection of resources.
                        //U NEED TDESERIALIZE 
                        var resID = data.response[i].ID;
                        var summary = data.response[i].Summary;
                        var pageID = data.response[i].PageID;
                        var name = data.response[i].Name;
                        var createdOn = data.response[i].CreatedOn
                        var Total = data.response[i].Total;
                    }
                },
                error: function(XMLHttpRequest, textStatus, errorThrown)
                {
                    alert(errorThrown);
                    alert(XMLHttpRequest);
                    alert(textStatus);
                    console.log(errorThrown);
                    console.log(XMLHttpRequest);
                    console.log(textStatus);
                    console.log(errorThrown);
                }
            });
        });

    });
</script>
/// <summary>
    /// Summary description for AjaxHandler
    /// </summary>
    public class AjaxHandler : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/json";
           //context.Response.Write("Hello World");

           string response = "";
          string var =  context.Request["Action"].ToString();
           switch (context.Request["Action"])
           {
               case "ResponseFilterSearch":
                   response += "{";

                   Dictionary<string, Object> jsonObject = new Dictionary<string, object>();
                   string skill = context.Request["Skill"].ToString();
                   string type = context.Request["Type"].ToString();
                   string focus = context.Request["focus"].ToString();
                   string keyword = context.Request["Keyword"];
                   string sortby = context.Request["SortBy"];
                   string pageNumber = context.Request["pagenumber"];

                   SqlDataProvider sqlConn = new SqlDataProvider();

                   DataSet dsResults = SqlHelper.ExecuteDataset(sqlConn.ConnectionString, "spResourceSearch", skill, type, focus, keyword, sortby, pageNumber);

                   foreach (System.Data.DataRow row in dsResults.Tables[0].Rows)
                   {
                       response += "\"ID\":" + "\"" + row["Id"].ToString() + "\"";
                       response += "\"Summary\":" + "\"" + row["summary"].ToString() + "\"";
                       response += "\"PageID\":" + "\"" + row["pageId"].ToString() + "\"";
                       response += "\"Name\":" + "\"" + row["name"].ToString() + "\"";
                       response += "\"CreatedOn\":" + "\"" + row["createdOn"].ToString() + "\"";
                       response += "\"Total\":" + "\"" + row["total"].ToString() + "\"";

                   }


                   response += "}";

                   break;

           }

           //this returns a json string

           context.Response.Write(response);
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
uxh89sit

uxh89sit1#

您似乎混淆了contentTypedataType
contentType表示请求体的内容类型(即您发送到服务器的数据),您已将其设置为json,这不是$('form').serialize()将产生的内容。$('form').serialize()application/x-www-form-urlencoded中生成数据,这是$. ajax中的默认值。
现在dataType是响应体的内容类型(这是您从服务器接收的数据),从您的代码中应该是json。

$.ajax({
    url: "../ideapark/DesktopModules/ResourcesFilter/AjaxHandler.ashx",
    dataType: "json",
    type: "POST",
    data: $('form').serialize(),
    success: function(data) {
    ...
    },
    error: function(XMLHttpRequest, textStatus, errorThrown)
    {
    ....
    }
});
wztqucjr

wztqucjr2#

在Visual Studio中,单击解决方案资源管理器中的通用处理程序,然后按F4选择“属性”。请确保您的build action是“compile”,而不仅仅是“content”。

相关问题