会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
执笔小白
新随笔
订阅
管理
上一页
1
···
22
23
24
25
26
27
28
29
30
···
36
下一页
2021年3月29日
C#-string帮助类
摘要: 出自:依乐祝——.NET Core实战项目之CMS 第一章 作者:依乐祝原文地址:https://www.cnblogs.com/yilezhu/p/9977862.html using System; using System.Collections.Generic; using System.D
阅读全文
posted @ 2021-03-29 19:21 ꧁执笔小白꧂
阅读(253)
评论(0)
推荐(0)
2021年3月18日
NetCore错误“无法连接到Web服务器IIS Express”
摘要: 环境: Windows7 64 VS2017+NetCore2.2 问题: 对策: 步奏一:删除.VS文件夹+清理解决方案(解决方案-右键-清理解决方案),重启VS 步奏二:设置-调试,“应用程序URL”与“启用SSL”里的url一致。 或是修改为下面的样子(启动可以是IIS Express或项目)
阅读全文
posted @ 2021-03-18 10:16 ꧁执笔小白꧂
阅读(1291)
评论(0)
推荐(1)
2021年3月17日
ASP.NET-IWebHostBuilder与IWebHost的关系
摘要: IWebHostBuilder:Web主机(承载和运行Web应用程序的常规工具)配置实例 IWebHost:Web主机(承载和运行Web应用程序的常规工具)实例 都是Web应用程序最基础的类。
阅读全文
posted @ 2021-03-17 17:21 ꧁执笔小白꧂
阅读(207)
评论(0)
推荐(0)
.NetCore创建视图时错误“运行所选代码生成器时出错。。。”
摘要: 错误截图: 对策: 步奏一:去掉解决方案里的所有错误(我的时MVC工程里遇到的,去除了Views与Controllers的错误) 步奏二:重启Visual Studio。
阅读全文
posted @ 2021-03-17 16:09 ꧁执笔小白꧂
阅读(526)
评论(0)
推荐(0)
2021年3月16日
依赖注入DI(一)-理解依赖注入(DI)和控制反转(IoC)思想
摘要: 一,前言: C# .net底层倾向于DI而JAVA的Spring倾向于IOC(SpringIOC,怎么实现就不去了解了。DI?DL?),所以学下这块的知识。 二,概念理解: 1.Ioc反转控制思想: 反转控制即把内置对象的控制权反转给一个容器,而应用程序只需要提供对象的类型即可。 ①意义: 可以用来
阅读全文
posted @ 2021-03-16 16:45 ꧁执笔小白꧂
阅读(283)
评论(0)
推荐(0)
常用包管理工具
摘要: 一、系统常用包管理工具: apt:Ubuntu yum:CentOS/RHEL Docker images:Docker操作系统包管理工具 二、开发语言常用包管理工具: NuGet:.NET包管理工具 Maven:Java包管理工具(Gradle是自动化建构工具;spring是一个bean容器,让程
阅读全文
posted @ 2021-03-16 16:15 ꧁执笔小白꧂
阅读(272)
评论(0)
推荐(0)
Nginx部署文件(一)-nginx.conf文件
摘要: 一,默认文件说明 1.以nginx/1.14.0 (Ubuntu)为例 1 # 使用的用户和组 2 user www-data; 3 # 定义nginx对外提供web服务时的worker进程数 4 worker_processes auto; 5 # 指定pid存放的路径,应该记录了nginx守护进
阅读全文
posted @ 2021-03-16 10:05 ꧁执笔小白꧂
阅读(288)
评论(0)
推荐(0)
2021年3月12日
网页里打开微信或者qq
摘要: 一,H5端: 手机端: <a href="mqqwpa://im/chat?chat_type=wpa&uin=840937370&version=1&src_type=web&web_src=oicqzone.com">打开qq聊天框</a> <a href="weixin://profile/C
阅读全文
posted @ 2021-03-12 14:48 ꧁执笔小白꧂
阅读(958)
评论(0)
推荐(0)
2021年3月11日
3D ArcGIS外调(外业数据采集)工具源码
摘要: 外业数据采集工具源码: https://github.com/SaberW/SurveyOnUCMap
阅读全文
posted @ 2021-03-11 16:42 ꧁执笔小白꧂
阅读(121)
评论(0)
推荐(0)
CMS开发-ASP.Core学习笔记(一)
摘要: 一,源码部署 1.下载源码(博客园-依乐祝) 原技术栈:ASP.NET Core2.2+AutoFac+AutoMapper+ FluentValidation +Dapper+LayUI+Redis+SqlServer/Mysql 部署时间段的技术栈:ASP.NET Core2.2+AutoFac
阅读全文
posted @ 2021-03-11 16:04 ꧁执笔小白꧂
阅读(114)
评论(0)
推荐(0)
CMS系统开发学习-前言
摘要: 一,前言 1.同类别的东西: CMS-ASP.Core学习笔记(博客园依乐祝的教程) CMS-Java学习笔记(2年N月后学这个,大概学习SSM(Spring+SpringMVC+MyBatis)方向上的) CMS-PHP学习笔记(PHP做的CMS很多,没学过PHP所以不学了) 2.CMS:内容管理
阅读全文
posted @ 2021-03-11 15:14 ꧁执笔小白꧂
阅读(338)
评论(0)
推荐(0)
2021年3月10日
Linux-SQLite错误: System.DllNotFoundException: SQLite.Interop.dll\n
摘要: 系统环境: Ubuntu18+mono+ASP.NET程序 "错误信息: System.DllNotFoundException: SQLite.Interop.dll\n at (wrapper managed-to-native) System.Data.SQLite.UnsafeNativeM
阅读全文
posted @ 2021-03-10 17:24 ꧁执笔小白꧂
阅读(395)
评论(0)
推荐(0)
2021年3月9日
Unity导出Webgl按钮等组件不显示中文的bug
摘要: 情况一:工程使用了unity系统自带的Arial字体 对策:给这个工程加上字体。 按钮等组件拖入字体: 或者代码中: public Font fontss; text.font = fonss;
阅读全文
posted @ 2021-03-09 10:33 ꧁执笔小白꧂
阅读(741)
评论(0)
推荐(0)
2021年2月27日
C#-stopwatch记录运行时间
摘要: /// <summary>/// 运行时间/// </summary>[ProtoMember(46)]public long WorkTime; Stopwatch stopwatch = new Stopwatch(); // 记录运行时间stopwatch.Start();。。。// 运行的代
阅读全文
posted @ 2021-02-27 11:25 ꧁执笔小白꧂
阅读(133)
评论(0)
推荐(0)
get post最好使用post
摘要: GET (相反是PUT) 请求指定的页面信息,并返回实体主体。 GET请求请提交的数据放置在HTTP请求协议头中,GET方法通过URL请求来传递用户的输入,GET方式的提交你需要用Request.QueryString来取得变量的值。 GET方法提交数据,可能会带来安全性的问题,数据被浏览器缓存。
阅读全文
posted @ 2021-02-27 10:04 ꧁执笔小白꧂
阅读(74)
评论(0)
推荐(0)
2021年2月25日
Unity报错-UnityEditor.BuildPlayerWindow+BuildMethodException: 2 errors
摘要: 错误如下: UnityEditor.BuildPlayerWindow+BuildMethodException: 2 errors at UnityEditor.BuildPlayerWindow+DefaultBuildMethods.BuildPlayer (BuildPlayerOption
阅读全文
posted @ 2021-02-25 15:54 ꧁执笔小白꧂
阅读(9746)
评论(0)
推荐(1)
Unity报错-【Unity 3D】Because you are not a member of this project this build will not access Unity services.
摘要: 这是由于你当前登陆的 Unity 账户不在项目的成员列表中。 【解决方法】 打开服务选项卡(点击窗口-->服务,或者直接快捷键 ctrl + 0)。 点 new link --> 选择自己的Unity 账号 --> create 然后将自己的账号加进去就好了。 详见: https://blog.cs
阅读全文
posted @ 2021-02-25 15:52 ꧁执笔小白꧂
阅读(1898)
评论(0)
推荐(0)
Unity错误-(Android build error) Can not sign application Unable to sign application; please provide passwords!
摘要: 参照方法链接:https://www.jianshu.com/p/e56434e1bd69
阅读全文
posted @ 2021-02-25 15:49 ꧁执笔小白꧂
阅读(552)
评论(0)
推荐(0)
2021年2月24日
C#-WCF中传输List对象
摘要: 遇到的问题: C#WCF客户端生成的服务默认把集合List<>转化为数组[],我们可以用下列对策: 对策一:客户端可以使用IList接收: 服务端 public interface ISqliteManagerWcfS{ // TODO: 在此添加您的服务操作 [OperationContract]
阅读全文
posted @ 2021-02-24 17:06 ꧁执笔小白꧂
阅读(244)
评论(0)
推荐(0)
抓包工具Omnipeek,Wireshark
摘要: 一,前言 浏览了https://www.v2ex.com/t/399187,https://bbs.csdn.net/topics/20336204,https://jingyan.baidu.com/article/8ebacdf0515ced49f65cd5f0.html等几个网站 里面提到了几
阅读全文
posted @ 2021-02-24 10:00 ꧁执笔小白꧂
阅读(1538)
评论(0)
推荐(1)
上一页
1
···
22
23
24
25
26
27
28
29
30
···
36
下一页
公告