我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C#递归应用之如何实现JS文件的自动引用

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C#递归应用之如何实现JS文件的自动引用

这篇文章主要介绍了C#递归应用之如何实现JS文件的自动引用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C#递归应用之如何实现JS文件的自动引用文章都会有所收获,下面我们一起来看看吧。

    背景

    两张表,分别是 :sys_tbl,和 sys_field,其中:sys_tbl 是系统所有表的信息,包含两个字段 :code(表名),name(表描述信息);sys_fld 是记录第张表中的字段 的名称(field)和描述信息(table) , 

    截图如下:

    sys_tbl

    C#递归应用之如何实现JS文件的自动引用

    C#递归应用之如何实现JS文件的自动引用

    其中,字段 名称包含对其它名称(对象) 的引用,写法为:表名(去除下划线)_引用字段 ,如:einventory_cinvcode,就是对表 e_inventory 中字段 cinvcode的引用。

    每张表都在系统 中对应有不同功能的js文件(模块)如: 编辑窗体(dialog类型),跨域选择窗体(field)类型等

    需求

    在一个综合的页面中,会对其它对象进行引用(依赖),而这种引用最终体现在对js文件的包含。同时被引用的js 文件(一级引用)还有自已关联对象(二级引用).....如此下去,直到N 级引用。

    所以现在需要逐层找到对象的引用,直到最后不依赖任何对象为止,并把这些js文件生成引用包含路径(不重复)

    分析

    1、返回结果类型

    得到这些js引用,不能重复,但是对象之间引用是可以存在交叉的,在整个引用链条上,同一个对象会被 多个对象引用,所以简单的字符串数组是避免不了重复的。但是在C#中的HashSet可以做到不重复,同时这个去重工作是自动完成的,所以存结果如果是简单的value类型,用 HashSet就可以,但是因为字段中表的信息已经被格式化过,所以还要把格式化之前的表名称取出与字段对应,所以需要一个key-value类型的数据 ,那就是 Dictionary<string, string> 了。

    2、算法选择

    因为查找引用,是层层进行的,而且下一层引用的要用到上一层的引用结果,所以这里选择递归算法

    代码实现

    声明一个全局变量,记录所有的表与字段的对应的数据,因为需要确保数据key 唯一性所以选择Dicctionary类型

    /// <summary>        /// define the gloable parameter to save the rel obj data        /// </summary>        public static Dictionary<string, string> <strong>deepRef </strong>= new Dictionary<string, string>();

    入口函数,完成准备工作,(数据库连接,参数准备)

    /// <summary>        /// 通过表的字段 获取相关的引用字段依赖的对象 直到没有依赖为止        /// </summary>        /// <param name="headField">表字段列表</param>        /// <returns></returns>        public static Dictionary<string,string>  getRelRef(List<IniItemsTableItem> headField)        {            HashSet<string> refset = new HashSet<string>();           // HashSet<string> refset_result = new HashSet<string>();            foreach (var item in headField)            {                if (!item.controlType.StartsWith("hz_"))// is not the field of  reference                {                    continue;                }                string[] fieldarr = item.dataIndex.Split('_');//the constructor is :[tabble]_[field]                refset.Add(fieldarr[0]);//the first prefix            }            dataOperate dao = new dataOperate();            dao.DBServer = "info";            SqlConnection conn = dao.createCon();            try            {                if (refset.Count > 0)                {                                        if (conn.State != ConnectionState.Open)                        conn.Open();//open connection                    deepRef = new Dictionary<string, string>();//clear the relation obj data                    getRef(conn, refset);                                 }                return deepRef;            }            catch (Exception)            {                throw;            }            finally            {                if (conn.State == ConnectionState.Open)                    conn.Close();            }        }

    递归函数,最终完成在数据库中获取字段依赖的对象的获取

    /// <summary>        /// get the relation obj         /// </summary>        /// <param name="conn"></param>        /// <param name="ref_field"></param>        /// <returns></returns>        public static HashSet<string> <strong>getRef</strong>(SqlConnection conn, HashSet<string> ref_field)        {            HashSet<string> refset = new HashSet<string>();            string refstr = string.Join("','", ref_field);            if (refstr != "")            {                refstr = "'" + refstr + "'";                string sql = "SELECT dbo.GetSplitOfIndex(b.[field],'_',1) as refcode,a.[code]  FROM   (  select   replace(code,'_','') as uncode,* from     [SevenWOLDev].[dbo].[sys_tbl_view] )   as a inner join [SevenWOLDev].[dbo].[sys_fld_view]  as b    on a.uncode=dbo.GetSplitOfIndex(b.[field],'_',1)    where replace([table],'_','') in (" + refstr + ") and uitype='ref'";                //get dataset relation obj                DataSet ds = dataOperate.getDataset(conn, sql);                if (ds != null && ds.Tables.Count > 0)                {                    DataTable dt = ds.Tables[0];                    if (dt.Rows.Count > 0)                    {                        //rel ref exists                        for (int k = 0; k < dt.Rows.Count; k++)                        {                            string vt = dt.Rows[k].ItemArray[0].ToString();                             string vv = dt.Rows[k].ItemArray[1].ToString();                            refset.Add(vt);//save current ref                            if(!<strong>deepRef</strong>.ContainsKey(vt))                                <strong>deepRef</strong>.Add(vt, vv);// save all ref                                                     }                        if (refset.Count > 0)// get the ref successfully                        {                            //recursion get                            getRef(conn, refset);                        }                    }                }            }            else            {                 //no ref            }            return refset;        }

    对函数进行调用,并组织出js文件引用路径

    Dictionary<string,string> deepRef = ExtjsFun.getRelRef(HeadfieldSetup);            if (deepRef != null)            {                foreach (var s in deepRef)                {                    string tem_module = "";                    tem_module = s.Value;                    string[] moduleArr = tem_module.Split('_');                    if (tem_module.IndexOf("_") >= 0)                        tem_module = moduleArr[1];//module name for instance: p_machine ,the module is “machine” unless not included the underscore                    string fieldkind = "dialog";                    jslist.Add(MyComm.getFirstUp(tem_module) + "/" + ExtjsFun.GetJsModuleName(tem_module, s.Value, fieldkind) + ".js");                    fieldkind = "field";                    jslist.Add(MyComm.getFirstUp(tem_module) + "/" + ExtjsFun.GetJsModuleName(tem_module, s.Value, fieldkind) + ".js");                }            }

    最终结果 如下:

    <script class="lazy" data-src="../../dept/demoApp/scripts/Sprice/SpriceE_spriceGridfield.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Org/OrgE_orgDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Supplier/SupplierOa_supplierDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Supplier/SupplierOa_supplierField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Unit/UnitE_unitDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Unit/UnitE_unitField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Wh/WhWh_whDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Wh/WhWh_whField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Mold/MoldP_moldDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Mold/MoldP_moldField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Suppliercategory/SuppliercategoryOa_suppliercategoryDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Suppliercategory/SuppliercategoryOa_suppliercategoryField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Bank/BankOa_bankDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Bank/BankOa_bankField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Machine/MachineP_machineDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Machine/MachineP_machineField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Inventory/InventoryE_inventoryDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Basedocment/BasedocmentOa_basedocmentDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Basedocment/BasedocmentOa_basedocmentField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Basedoctype/BasedoctypeOa_basedoctypeDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Basedoctype/BasedoctypeOa_basedoctypeField.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Tax/TaxE_taxDialog.js" type="text/javascript"></script>      <script class="lazy" data-src="../../dept/demoApp/scripts/Tax/TaxE_taxField.js" type="text/javascript"></script>

    完事代码如下:

    /// <summary>        /// define the gloable parameter to save the rel obj data        /// </summary>        public static Dictionary<string, string> deepRef = new Dictionary<string, string>();        /// <summary>        /// 通过表的字段 获取相关的引用字段依赖的对象 直到没有依赖为止        /// </summary>        /// <param name="headField">表字段列表</param>        /// <returns></returns>        public static Dictionary<string,string>  getRelRef(List<IniItemsTableItem> headField)        {            HashSet<string> refset = new HashSet<string>();           // HashSet<string> refset_result = new HashSet<string>();            foreach (var item in headField)            {                if (!item.controlType.StartsWith("hz_"))// is not the field of  reference                {                    continue;                }                string[] fieldarr = item.dataIndex.Split('_');//the constructor is :[tabble]_[field]                refset.Add(fieldarr[0]);//the first prefix            }            dataOperate dao = new dataOperate();            dao.DBServer = "info";            SqlConnection conn = dao.createCon();            try            {                if (refset.Count > 0)                {                                        if (conn.State != ConnectionState.Open)                        conn.Open();//open connection                    deepRef = new Dictionary<string, string>();//clear the relation obj data                    getRef(conn, refset);                                 }                return deepRef;            }            catch (Exception)            {                throw;            }            finally            {                if (conn.State == ConnectionState.Open)                    conn.Close();            }                    }               /// <summary>        /// get the relation obj         /// </summary>        /// <param name="conn"></param>        /// <param name="ref_field"></param>        /// <returns></returns>        public static HashSet<string> getRef(SqlConnection conn, HashSet<string> ref_field)        {            HashSet<string> refset = new HashSet<string>();            string refstr = string.Join("','", ref_field);            if (refstr != "")            {                refstr = "'" + refstr + "'";                string sql = "SELECT dbo.GetSplitOfIndex(b.[field],'_',1) as refcode,a.[code]  FROM   (  select   replace(code,'_','') as uncode,* from     [SevenWOLDev].[dbo].[sys_tbl_view] )   as a inner join [SevenWOLDev].[dbo].[sys_fld_view]  as b    on a.uncode=dbo.GetSplitOfIndex(b.[field],'_',1)    where replace([table],'_','') in (" + refstr + ") and uitype='ref'";                //get dataset relation obj                DataSet ds = dataOperate.getDataset(conn, sql);                if (ds != null && ds.Tables.Count > 0)                {                    DataTable dt = ds.Tables[0];                    if (dt.Rows.Count > 0)                    {                        //rel ref exists                        for (int k = 0; k < dt.Rows.Count; k++)                        {                            string vt = dt.Rows[k].ItemArray[0].ToString();                             string vv = dt.Rows[k].ItemArray[1].ToString();                            refset.Add(vt);//save current ref                            if(!deepRef.ContainsKey(vt))                                deepRef.Add(vt, vv);// save all ref                                                     }                        if (refset.Count > 0)// get the ref successfully                        {                            //recursion get                            getRef(conn, refset);                        }                    }                }            }            else            {                 //no ref            }            return refset;        }

    关于“C#递归应用之如何实现JS文件的自动引用”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“C#递归应用之如何实现JS文件的自动引用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

    免责声明:

    ① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

    ② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

    C#递归应用之如何实现JS文件的自动引用

    下载Word文档到电脑,方便收藏和打印~

    下载Word文档

    猜你喜欢

    C#递归应用之如何实现JS文件的自动引用

    这篇文章主要介绍了C#递归应用之如何实现JS文件的自动引用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C#递归应用之如何实现JS文件的自动引用文章都会有所收获,下面我们一起来看看吧。背景两张表,分别是 :sy
    2023-07-05

    C#递归应用之实现JS文件的自动引用

    这篇文章主要为大家详细介绍了C#如何利用递归实现JS文件的自动引用的功能,文中的示例代码讲解详细,具有一定的参考价值,需要的可以参考一下
    2023-03-11

    C++ 函数的递归实现:如何使用尾递归优化技术?

    递归函数的效率问题可以通过尾递归优化 (tc++o) 技术解决。c++ 编译器虽然不支持 tco,但可以通过 [__tail_recursive](https://en.cppreference.com/w/cpp/keyword/tail
    C++ 函数的递归实现:如何使用尾递归优化技术?
    2024-04-22

    C#如何实现递归调用的Lambda表达式

    这篇文章主要讲解了“C#如何实现递归调用的Lambda表达式”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“C#如何实现递归调用的Lambda表达式”吧!首先给一个简单的示例: int
    2023-07-02

    C++ 函数的递归实现:如何使用递归来解决数学问题?

    递归是一种函数调用自身的编程技巧,用于解决复杂问题。在数学问题中,递归应用广泛,例如:计算阶乘:fac++torial(n) = n * factorial(n-1) if n > 0,factorial(0) = 1计算斐波那契数列:fi
    C++ 函数的递归实现:如何使用递归来解决数学问题?
    2024-04-22

    C++ 函数的递归实现:如何使用备忘录技术优化递归?

    优化递归的备忘录技术:使用备忘录存储已计算结果,避免重复计算。在 c++++ 中使用 unordered_map 作为备忘录,在计算前检查是否存在结果。存储计算结果后返回,提高遍历目录等计算密集型任务的性能。C++ 函数的递归实现:使用备忘
    C++ 函数的递归实现:如何使用备忘录技术优化递归?
    2024-04-22

    C++ 函数的递归实现:如何使用递归来构建复杂数据结构?

    使用递归可以构建复杂的数据结构,如二叉树。递归算法通过分解问题并调用自身来解决复杂的子问题。尽管递归算法简洁高效,但需要注意可能发生的堆栈溢出和性能问题。C++ 函数的递归实现:构建复杂数据结构递归是一种强大的编程技术,它允许函数调用自身
    C++ 函数的递归实现:如何使用递归来构建复杂数据结构?
    2024-04-22

    C++ 函数的递归实现:如何在不同的数据结构上有效使用递归?

    递归在 c++++ 中有效地处理了数据结构,具体如下:数组:轻松计算和值和找到最大值链表:有效计算长度和反转链表树:快速计算高度和先序遍历C++ 函数的递归实现:有效应用于数据结构简介递归是一种强大的编程技术,它允许函数调用自身。在 C
    C++ 函数的递归实现:如何在不同的数据结构上有效使用递归?
    2024-04-22

    如何使用Bash Shell对目录中的文件实现递归式拷贝

    本篇内容介绍了“如何使用Bash Shell对目录中的文件实现递归式拷贝”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!前言 今天工作中
    2023-06-09

    在Java项目中使用递归如何实现一个文件读取功能

    今天就跟大家聊聊有关在Java项目中使用递归如何实现一个文件读取功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。Java递归列出目录下全部文件 /** * 列出指定目录的全部内容
    2023-05-31

    Vue下如何用递归组件实现一个可折叠的树形菜单

    这篇文章主要介绍“Vue下如何用递归组件实现一个可折叠的树形菜单”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Vue下如何用递归组件实现一个可折叠的树形菜单”文章能帮助大家解决问题。在Vue.js中
    2023-07-04

    如何使用vbs实现自动删除超过10天的文件及文件夹

    小编给大家分享一下如何使用vbs实现自动删除超过10天的文件及文件夹,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!复制代码 代码如下:option explici
    2023-06-08

    JavaScript动画原理之如何使用js进行动画效果的实现

    在现在做页面很多时候都会用上动画效果,比如下拉菜单,侧边搜索栏,层的弹出与关闭等等,下面这篇文章主要给大家介绍了关于JavaScript动画原理之如何使用js进行动画效果实现的相关资料,需要的朋友可以参考下
    2023-05-14

    C#如何实现文件筛选读取并翻译的自动化工具

    这篇文章主要介绍了C#如何实现文件筛选读取并翻译的自动化工具的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C#如何实现文件筛选读取并翻译的自动化工具文章都会有所收获,下面我们一起来看看吧。思路首选读取项目文件夹
    2023-07-05

    如何利用计划任务和VBS脚本实现自动WEB共享文件夹里的文件

    这篇文章主要介绍如何利用计划任务和VBS脚本实现自动WEB共享文件夹里的文件,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!代码如下:Option Explicit On Error Resume Next 生成列表的
    2023-06-08

    编程热搜

    • Python 学习之路 - Python
      一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
      Python 学习之路 - Python
    • chatgpt的中文全称是什么
      chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
      chatgpt的中文全称是什么
    • C/C++中extern函数使用详解
    • C/C++可变参数的使用
      可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
      C/C++可变参数的使用
    • css样式文件该放在哪里
    • php中数组下标必须是连续的吗
    • Python 3 教程
      Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
      Python 3 教程
    • Python pip包管理
      一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
      Python pip包管理
    • ubuntu如何重新编译内核
    • 改善Java代码之慎用java动态编译

    目录