会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
jeffh
博客园
首页
新随笔
联系
订阅
管理
2023年3月17日
IIS 部署 .Net Core 网站
摘要: 1、安装并设置好IIS。 2、安装ASP.NET Core运行时中的Hosting模块(https://dotnet.microsoft.com/zh-cn/download/dotnet/7.0中的Hosting Bundle)。注意版本必须与编写程序时的.net core 版本一致。 安装后,打
阅读全文
posted @ 2023-03-17 14:56 jeffh
阅读(270)
评论(0)
推荐(0)
编辑
2023年1月4日
EF6 Code First Migrations
摘要: 参考地址:https://learn.microsoft.com/en-us/ef/ef6/modeling/code-first/migrations/ 1、启动Migrations Enable-Migrations 2、添加数据迁移 Add-Migration 如果发现Migrations记录
阅读全文
posted @ 2023-01-04 16:42 jeffh
阅读(29)
评论(0)
推荐(0)
编辑
2022年10月21日
FastReport OpenSource发布到Linux上的准备
摘要: 一、安装libgdiplus(libgdiplus是一个Mono库,用于对非Windows操作系统提供GDI+兼容的API) apt-get install build-essential libgtk2.0-dev apt-get install libgif-dev autoconf libto
阅读全文
posted @ 2022-10-21 17:05 jeffh
阅读(361)
评论(0)
推荐(0)
编辑
2022年7月20日
mongodb展开数组数据
摘要: 核心是$unwind操作 db.getCollection("orders").aggregate([{$unwind:"$OrderTrackingDetails"},{$match: { "OrderNumber":{"$in":["orderNumber"]}, "OrderTrackingD
阅读全文
posted @ 2022-07-20 16:26 jeffh
阅读(258)
评论(0)
推荐(0)
编辑
2022年3月25日
分页计算公式
摘要: var totalPage = (totalData + pageSize - 1)/pageSize;总页数=(数据总条数+每页数据条数-1)/ 每页数据条数
阅读全文
posted @ 2022-03-25 10:09 jeffh
阅读(223)
评论(0)
推荐(0)
编辑
2022年1月12日
vue 中监听页面滚动
摘要: html结构: <div> <div ref="scrollOne"></div> <div ref="scrollTwo"></div> <div ref="scrollThree"></div> </div> 在mounted事件中监听滑动事件 mounted() { window.addEve
阅读全文
posted @ 2022-01-12 10:40 jeffh
阅读(1282)
评论(0)
推荐(0)
编辑
2021年12月23日
解决手机浏览器上input 输入框导致页面放大的问题
摘要: 加入以下代码在head 区,可解决此问题 <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
阅读全文
posted @ 2021-12-23 11:00 jeffh
阅读(183)
评论(0)
推荐(0)
编辑
2021年6月25日
.net core 使用 Nlog 配置文件
摘要: nlog.config文件 安装nuget包: NLog.Web.AspNetCore 配置开始 <?xml version="1.0" encoding="utf-8" ?><nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xml
阅读全文
posted @ 2021-06-25 10:01 jeffh
阅读(279)
评论(0)
推荐(0)
编辑
.net core 使用 Nlog 集成 exceptionless 配置文件
摘要: nlog.config文件 安装nuget包: NLog.Web.AspNetCore Exceptionless.NLog 配置文件开始 <?xml version="1.0" encoding="utf-8" ?><nlog xmlns="http://www.nlog-project.org/
阅读全文
posted @ 2021-06-25 09:58 jeffh
阅读(272)
评论(1)
推荐(1)
编辑
2020年12月28日
Mysql不同字符串格式的连表查询
摘要: MySql报错:Error Code: 1267. Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT) for operation '=' 主要是连表查询的时候,=左边的字段为utf8
阅读全文
posted @ 2020-12-28 17:19 jeffh
阅读(208)
评论(0)
推荐(0)
编辑
下一页