摘要:
问题 Server Error401 - Unauthorized: Access is denied due to invalid credentials.You do not have permission to view this directory or page using the cre 阅读全文
摘要:
背景:MongoDB v4.2.7 错误:OperationFailed: Sort operation used more than the maximum 33,554,432 bytes of RAM. Add an index, or specify a smaller limit.’ on 阅读全文
摘要:
业务需求 使用 .Net 服务发送的邮件,如何统计打开率? 解决方案 在邮件中附加一张图片,图片 src 路径为 .Net WebAPI 提供的图片资源。当图片加载时,可以传递参数进行数据分析。 注意事项 图片资源为 HTTPS 路径可以直接加载使用;如果为 HTTP 路径则会被邮件进行默认替换。 阅读全文
摘要:
框架 后端服务:.Net Core 3.1 WebAPI前端页面:.Net Core 3.1 MVC 服务端 1. 跨域配置(CORS) 使用 Nuget 安装 Microsoft.AspNet.WebApi.Cors 2. 项目配置(Startup) public class Startup { 阅读全文
摘要:
背景 树莓派 4B + Ubuntu 20.04.1 LTS + MongoDB v3.6.8 配置步骤 1. 在 admin 表中添加超级管理员账号 2. 添加业务表,创建普通用户并分配权限 3. 修改 mongodb 配置文件,开启鉴权,开放外网访问权限(IP + 端口)。 sudo nano 阅读全文
摘要:
背景 在 Blazor Wasm 应用中,尝试使用 HttpPatch 对记录进行更新操作。 [Route("api/[controller]")] [ApiController] public class PersonController : ControllerBase { private Li 阅读全文
摘要:
背景 发布并部署一个 Blazor Wasm 应用到 IIS 问题 发布时如果选择了 Product single file,会得到 HTTP Error 500.38 - ANCM Application DLL Not Found 的错误 原因分析 HTTP Error 500.38 ANCM 阅读全文
摘要:
什么是 Worker Service(辅助角色服务)? .NET Core 3.0 新增了 Worker Service 的新项目模板,可以编写长时间运行的后台服务,并且能轻松的部署成 windows 服务或 linux 守护程序。 如果安装的 vs2019 是中文版本,Worker Service 阅读全文
摘要:
背景:运行 Docker Desktop,启动其 Hyper-V 实例失败 错误:Hardware assisted virtualization and data execution protection must be enabled in the BIOS 解决: 问题可能在于 禁用了Hype 阅读全文
摘要:
硬件:Raspberry Pi 4B系统:Ubuntu 19.10 (Eoan Ermine) for IOT.Net Core 官网:https://dotnet.microsoft.com/download/dotnet-core/3.1 操作步骤 1. 系统环境准备 sudo apt-get 阅读全文
摘要:
准备材料 1. 服务开通(新用户首次购买,一个月以内不高于2QPS,免费) 链接地址:https://common-buy.aliyun.com/?commodityCode=face_pre#/open 2. 支付费用后可登陆控制台(现阶段管理控制台功能还不完善,不过不影响程序的测试调用)。 链接 阅读全文
摘要:
从 .xlsx 文件中读取记录 从 .csv 文件中读取记录 Excel Helper using ExcelDataReader; using OfficeOpenXml; using System; using System.Collections.Generic; using System.D 阅读全文
摘要:
硬件 WIFI 一台,作为主路由单网口 PC 一台,作为软路由系统的主机(这里用 #PC_LEDE# 标识) 软件 KoolShare LEDE 固件https://firmware.koolshare.cn/ 微PE工具箱http://www.wepe.com.cn/ Roadkil's Disk 阅读全文
摘要:
说明: 该教程基于 Mate 30 进行介绍,但也适用于 HUAWEI MatePad Pro。 准备资料: #1. 花粉俱乐部相关帖子https://club.huawei.com/viewthreaduni-21567331-filter-reply-orderby-replies-page-1 阅读全文
摘要:
#1. 在 Win10 的 Microsoft Store 中安装了 ubuntu18.04,更换为国内源。 #2. 在 WSL 中安装 xfce4 桌面环境 $ sudo apt-get install xfce4 #3. 配置 .bashrc $ cd ~ $ nano .bashrc 在最后一 阅读全文