| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace WebForm.Platform.Dictionary
- {
- /// <summary>
- /// TreeRefresh 的摘要说明
- /// </summary>
- public class TreeRefresh : IHttpHandler
- {
- public void ProcessRequest(HttpContext context)
- {
- context.Response.ContentType = "text/plain";
- string id = context.Request.QueryString["refreshid"];
- Guid gid;
- if (!id.IsGuid(out gid))
- {
- context.Response.Write("[]");
- return;
- }
- System.Text.StringBuilder json = new System.Text.StringBuilder("[", 1000);
- RoadFlow.Platform.Dictionary BDict = new RoadFlow.Platform.Dictionary();
- var childs = BDict.GetChilds(gid).OrderBy(p => p.Sort);
- int i = 0;
- int count = childs.Count();
- foreach (var child in childs)
- {
- var hasChilds = BDict.HasChilds(child.ID);
- json.Append("{");
- json.AppendFormat("\"id\":\"{0}\",", child.ID);
- json.AppendFormat("\"parentID\":\"{0}\",", child.ParentID);
- json.AppendFormat("\"title\":\"{0}\",", child.Title);
- json.AppendFormat("\"type\":\"{0}\",", hasChilds ? "1" : "2");
- json.AppendFormat("\"ico\":\"{0}\",", "");
- json.AppendFormat("\"hasChilds\":\"{0}\",", hasChilds ? "1" : "0");
- json.Append("\"childs\":[");
- json.Append("]");
- json.Append("}");
- if (i++ < count - 1)
- {
- json.Append(",");
- }
- }
- json.Append("]");
- context.Response.Write(json.ToString());
- }
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
- }
- }
|