2024年8月2日
摘要: 1 安装ftp软件 yum install vsftpd* -y 2 配置服务启动 #启用 firewalld 服务 systemctl start vsftpd.service #开启vsftpd服务 这条命令设置 firewalld 服务在系统启动时自动启动。systemctl enable 命 阅读全文
posted @ 2024-08-02 11:35 火星大能猫 阅读(1) 评论(0) 推荐(0) 编辑
  2024年7月10日
摘要: .Net Core WebApi项目 Development模式下报错 System.InvalidOperationException:“Cannot resolve scoped service 'Microsoft.Extensions.Options.IOptionsSnapshot`1[I 阅读全文
posted @ 2024-07-10 11:33 火星大能猫 阅读(17) 评论(0) 推荐(0) 编辑
  2024年6月19日
摘要: 废话不多说(主要文笔比较差),直接上代码 一个简单的demo,如下 <img :src="orginalImgSrc" style="display: none;" crossOrigin="Anonymous" @load="imgLoaded"> vue代码 imgLoaded(e) { deb 阅读全文
posted @ 2024-06-19 16:56 火星大能猫 阅读(95) 评论(1) 推荐(0) 编辑
  2024年5月11日
摘要: 效果如图 实现了绘图,自适应缩放 核心代码如下 <Window.InputBindings> <KeyBinding Key="Z" Modifiers="Ctrl" Command="{Binding UndoCommand}" /> </Window.InputBindings> <i:Inte 阅读全文
posted @ 2024-05-11 13:47 火星大能猫 阅读(398) 评论(0) 推荐(0) 编辑
  2024年4月12日
摘要: 自定义泛型用户控件: <UserControl x:Class="ClassLibrary1.UcEumCmb" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.mic 阅读全文
posted @ 2024-04-12 15:29 火星大能猫 阅读(45) 评论(0) 推荐(0) 编辑
  2023年11月29日
摘要: 首先是表结构,部分字段脱敏已删除 CREATE TABLE `log_device_heart` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `device_number` varchar(255) CHARACTER SET utf8mb4 COLLA 阅读全文
posted @ 2023-11-29 15:50 火星大能猫 阅读(176) 评论(0) 推荐(0) 编辑
  2023年11月17日
摘要: public static String ToChineseYearAndMonth(this DateTime dt) { string[] chineseNumbers = { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九" }; // 将年份和 阅读全文
posted @ 2023-11-17 11:22 火星大能猫 阅读(138) 评论(0) 推荐(0) 编辑
  2023年7月24日
摘要: .net core 7.0+centos 7.0 cetnos目前运行在hyper V虚拟机里 虚拟机部署的注意事项 1 需要配置网络环境, 确保在同一局域网下 如果sftp无法连接 ctrl+shift+f2切换到命令行,开启22端口 iptables -I INPUT -p tcp --dpor 阅读全文
posted @ 2023-07-24 13:35 火星大能猫 阅读(1709) 评论(9) 推荐(0) 编辑
  2023年5月9日
摘要: 在国内,electron经常遇到各种问题,导致无法安装 在安装electron官网的快速入门步骤,到npx electron-forge import的时候,遇到了各种问题 npm install --save-dev electronnpm ERR! code 1npm ERR! path E:\ 阅读全文
posted @ 2023-05-09 21:08 火星大能猫 阅读(2671) 评论(0) 推荐(0) 编辑
  2023年5月8日
摘要: 未能加载文件或程序集“netstandard,Version=2.0.0.0, Culture=neutral,PublicKeyToken=cc7b13ffcd2ddd51”或它的某一个依赖项 错误环境: win7 sp1 ,winform 基于.net framework 4.5开发的程序,调用 阅读全文
posted @ 2023-05-08 10:31 火星大能猫 阅读(2153) 评论(0) 推荐(0) 编辑