zoukankan      html  css  js  c++  java
  • 一般处理程序返回json

    一般处理程序:
     
     public void ProcessRequest(HttpContext context)
            {
                string action = context.Request.Params["action"];
                switch (action)
                {
                    case "TestAction":
                        GetJsonString();
                        break;
                }
                context.Response.ContentType = "text/plain";
            }
            public void GetJsonString()
            {
                Product product = new Product();
                product.Name = "Apple";
                product.Expiry = new DateTime(2008, 12, 28);
                product.Sizes = new string[] { "Small" };
                List<Product> list = new List<Product>();
                for (int i = 0; i < 12; i++)
                {
                    list.Add(product);
                }
                HttpContext.Current.Response.Write(JsonConvert.SerializeObject(new { Result = 1, Msg = "获取数据成功", Data = list }));

         }

     
    第一次加载js:
    $(function () {
            $.ajax({
                type: "get",
                url: "/action/Handler.ashx",
                data: { action: "TestAction" },
                dataType: "json",
                success: function (data) {
                    alert(data.Result);
                    alert($.isArray( data.Data));
                },
                error: function (XMLHttpRequest, textStatus, errorThrown) {
                    alert(XMLHttpRequest.status);
                    alert(XMLHttpRequest.readyState);
                    alert(textStatus);
                }
            });
        })
  • 相关阅读:
    修改sharepoint列表样式
    Zend Server 安装与配置图文教程
    安装zendstudio和破解方法及配置svn
    C#索引器
    曝光尚德机构亲身经历请大家不要上当
    不支持PowerShell 2.0版本(don't support PowerShell version 2.0. )
    SharePoint Project Server List 列表CURD操作使用rest api接口
    解决启动SQL Server Management Studio 17时报Cannot find one of more components...的问题
    Project Server2016升级安装问题项目中心无法显示
    Project Server 2016 RestAPI调用测试
  • 原文地址:https://www.cnblogs.com/viaiu/p/4807825.html
Copyright © 2011-2022 走看看