欢迎莅临 SUN WU GANG 的园子!!!

世上无难事,只畏有心人。有心之人,即立志之坚午也,志坚则不畏事之不成。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2024年11月11日

摘要: SELECT @@VERSION AS '版本信息', SERVERPROPERTY('Edition') AS '版本', SERVERPROPERTY('LicenseType') AS '许可类型', SERVERPROPERTY('ProductVersion') AS '产品版本号', S 阅读全文
posted @ 2024-11-11 17:02 sunwugang 阅读(0) 评论(0) 推荐(0) 编辑

2024年10月10日

摘要: using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Ru 阅读全文
posted @ 2024-10-10 09:55 sunwugang 阅读(4) 评论(0) 推荐(0) 编辑

2024年10月9日

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namesp 阅读全文
posted @ 2024-10-09 14:30 sunwugang 阅读(8) 评论(0) 推荐(0) 编辑

2024年9月23日

摘要: base64 to pdf 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threadin 阅读全文
posted @ 2024-09-23 09:23 sunwugang 阅读(38) 评论(0) 推荐(0) 编辑

2024年7月9日

摘要: using System; class Program { static void Main() { Console.WriteLine(AreAnagrams("CCAA", "CAAC")); Console.WriteLine(AreAnagrams("CARE", "RACE")); } s 阅读全文
posted @ 2024-07-09 15:11 sunwugang 阅读(4) 评论(0) 推荐(0) 编辑

2024年4月17日

摘要: EF的查询效率如何优化?EF(Entity Framework)是一个对象关系映射框架,可以用来简化与数据库交互的代码。在进行查询时,以下是一些优化EF查询效率的方法: 使用延迟加载:EF默认使用延迟加载(Lazy Loading)来获取导航属性的数据。延迟加载可以避免不必要的查询和数据加载,因此可 阅读全文
posted @ 2024-04-17 16:07 sunwugang 阅读(13) 评论(0) 推荐(0) 编辑

2024年4月12日

摘要: StringHelper--字符串左右添加指定字符 1 using System; 2 using System.Collections.Generic; 3 using System.Configuration; 4 using System.Linq; 5 using System.Text; 阅读全文
posted @ 2024-04-12 09:49 sunwugang 阅读(14) 评论(0) 推荐(0) 编辑

2024年4月2日

摘要: Vue UI 组件库:https://element.eleme.cn 移动端常用UI组件库 Vant:https://youzan.github.io/vant Cube UI:https://didi.github.io/cube-ui Mint UI:https://mint-ui.githu 阅读全文
posted @ 2024-04-02 17:54 sunwugang 阅读(18) 评论(0) 推荐(0) 编辑

摘要: histroy模式+hash模式 阅读全文
posted @ 2024-04-02 15:15 sunwugang 阅读(6) 评论(0) 推荐(0) 编辑

摘要: 路由守卫简介 作用:用于对路由进行权限控制 分类:全局守卫(前置路由守卫 + 后置路由守卫)、独享守卫、组件内守卫 全局--前置路由守卫 + 后置守卫 示例 1 import Vue from 'vue' 2 import VueRouter from 'vue-router' 3 import H 阅读全文
posted @ 2024-04-02 11:51 sunwugang 阅读(54) 评论(0) 推荐(0) 编辑