摘要: 飞书开放平台https://open.feishu.cn 可以提前安装程序: 安装node.js V22.22.1(LTS) 地址:https://nodejs.org/zh-cn 安装git for windows 地址:https://git-scm.com/?hl=zh-cn 安装OpenCl 阅读全文
posted @ 2026-03-12 20:25 神奇的程序员 阅读(64) 评论(0) 推荐(0)
摘要: qq机器人创建网站:https://q.qq.com/qqbot/openclaw/login.html 步骤一、可以提前安装程序: 安装node.js V22.22.1(LTS) 地址:https://nodejs.org/zh-cn 安装git for windows 地址:https://gi 阅读全文
posted @ 2026-03-12 15:04 神奇的程序员 阅读(60) 评论(0) 推荐(0)
摘要: openClaw官网:https://openclaw.ai WSL 版本 2.1.5 或更高版本 Windows 10 64 位:最低要求为家庭版或专业版 22H2(内部版本 19045)或更高版本,或企业版或教育版 22H2(内部版本 19045)或更高版本。 Windows 11 比win10 阅读全文
posted @ 2026-03-11 19:05 神奇的程序员 阅读(185) 评论(0) 推荐(0)
摘要: 源码地址:https://github.com/openclaw/openclaw 拉取到D:\OpenClaw文件夹 步骤一、可以提前安装程序: 安装node.js V22.22.1(LTS) 地址:https://nodejs.org/zh-cn 安装git for windows 地址:htt 阅读全文
posted @ 2026-03-11 18:30 神奇的程序员 阅读(36) 评论(0) 推荐(0)
摘要: 使用在线命令安装 官网安装文档:https://docs.openclaw.ai/zh-CN/install步骤一、可以提前安装程序: 安装node.js V22.22.1(LTS) 地址:https://nodejs.org/zh-cn 安装git for windows 地址:https://g 阅读全文
posted @ 2026-03-11 17:49 神奇的程序员 阅读(30) 评论(0) 推荐(0)
摘要: 让 Nginx 在 Windows 启动时自动运行,无需手动点击: 使用 NSSM(Non-Sucking Service Manager)(推荐)NSSM 是一个轻量级工具,可以把任意 .exe 程序注册为 Windows 服务。步骤:1、下载 NSSM官网:https://nssm.cc/dow 阅读全文
posted @ 2026-03-02 17:13 神奇的程序员 阅读(15) 评论(0) 推荐(0)
摘要: 步骤 1:确保 IIS 网站不占用 80/443 端口因为 Nginx 需要监听标准 HTTP/HTTPS 端口(80/443),所以 IIS 必须改用其他端口,例如 8080 步骤2:下载并安装 Nginx for Windows1、下载地址:https://nginx.org/en/downlo 阅读全文
posted @ 2026-03-02 17:08 神奇的程序员 阅读(26) 评论(0) 推荐(0)
摘要: 环境:NET Core 7.0 | Entity Framework Core 7.0.10 | Sql Server 数据库 1、创建解决方案 migration 2、创建类库 test.Domain 引用包: Microsoft.EntityFrameworkCore.Abstractions 阅读全文
posted @ 2025-06-18 12:04 神奇的程序员 阅读(187) 评论(0) 推荐(0)
摘要: ASP.NET MVC的ContentResult返回简单的纯文本内容,可通过ContentType属性指定应答文档类型,通过ContentEncoding属性指定应答文档的字符编码。一个例子来演习,自定义一个RwResult,它继承ContentResult,为视图象ASP.NET网页的Respo 阅读全文
posted @ 2021-09-23 09:16 神奇的程序员 阅读(300) 评论(0) 推荐(0)
摘要: 将日期时间转换为指定格式,如:YYYY-mm-dd HH:MM表示2019-06-06 19:45 function dateFormat(fmt, date) { let ret; const opt = { "Y+": date.getFullYear().toString(), // 年 "m 阅读全文
posted @ 2020-12-10 18:50 神奇的程序员 阅读(513) 评论(0) 推荐(0)