• 大小: 3.25MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-20
  • 语言: JavaScript
  • 标签: 管理系统  

资源简介

大家一起来学习一下,JavaScript写的管理系统

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Web.script.Serialization;
using System.Runtime.Serialization;

/// 
/// JSonhelper 的摘要说明
/// 

public class DTreeJSonhelper
{
    //对应JSON的singleInfo成员
    public string singleInfo = string.Empty;

    protected string _error = string.Empty;
    protected bool _success = true;
    protected long _totalCount = 0;
    protected System.Collections.ArrayList arrData = new ArrayList();
    protected System.Collections.ArrayList arrDataItem = new ArrayList();


    public DTreeJSonhelper()
    {

    }

    //public static string ToJSON(object obj)
    //{
    //    javascriptSerializer serializer = new javascriptSerializer();
    //    return serializer.Serialize(obj);
    //}

    //public static string ToJSON(object obj int recursionDepth)
    //{
    //    javascriptSerializer serializer = new javascriptSerializer();
    //    serializer.RecursionLimit = recursionDepth;
    //    return serializer.Serialize(obj);
    //}

    //对应于JSON的success成员
    public bool success
    {
        get
        {
            return _success;
        }
        set
        {
            //如设置为true则清空error
            if (success) _error = string.Empty;
            _success = value;
        }
    }

    //对应于JSON的error成员
    public string error
    {
        get
        {
            return _error;
        }
        set
        {
            //如设置error,则自动设置success为false
            if (value != ““) _success = false;
            _error = value;
        }
    }

    public long totlalCount
    {
        get { return _totalCount; }
        set { _totalCount = value; }
    }


    //重置,每次新生成一个json对象时必须执行该方法
    public void Reset()
    {
        _success = true;
        _error = string.Empty;
        singleInfo = string.Empty;
        arrData.Clear();
        arrDataItem.Clear();
    }



    public void AddItem(string name string value)
    {
        if (name == “leaf“ && value==“1“)
        {
            value = “true“;
            arrData.Add(““ + name + “:“ + ““ + value + ““);
        }
        else if (name == “leaf“ && value == “0“)
        {
            value = “false“;
            arrData.Add(““ + name + “:“ + ““ + value + ““);
        }
        else
        {
            arrData.Add(““ + name + “:\““ + ““ + value + “\““);
        }
       
    }



    public void ItemOk()
    {
        arrData.Add(“
“);
        //返回总记录条数
        totlalCount++;
    }

    //序列化JSON对象,得到返回的JSON代码
    public override string ToString()
    {
        StringBuilder sb = new StringBuilder();
        sb.Append(“[“);
       
        int index = 0;
        sb.Append(“{“);
        if (arrData.Count <= 0)
        {
            sb.Append(“}“);
        }
        else
        {
            foreach (string val in arrData)
            {
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

             13088686                    1284


评论

共有 条评论