摘要: 找不到“xxxx.csproj”的项目信息。如果使用 Visual Studio,这可能是因为该项目已被卸载或不属于当前解决方案,因此请从命令行运行还原。否则,项目文件可能无效或缺少还原所需的目标。 要解决“找不到‘*.csproj’项目信息”的问题(即使文件存在),可以按照以下优先级顺序**排查并 阅读全文
posted @ 2025-11-08 17:19 青争竹马 阅读(22) 评论(0) 推荐(0)
摘要: 针对 Windows 剪贴板与远程桌面共享失效的问题,结合常见原因和解决方案整理如下: 🔧 一、基础排查与快速修复 重启剪贴板进程(rdpclip.exe ) 在远程桌面或本地计算机上打开任务管理器(Ctrl+Shift+Esc),结束 rdpclip.exe 进程。 通过“运行”(Win+R)输 阅读全文
posted @ 2025-10-31 12:01 青争竹马 阅读(60) 评论(0) 推荐(0)
摘要: 在控制台中输入以下命令 setTimeout(function() { debugger; // 执行到此处时会暂停 console.log(" 延迟执行"); }, 3000); 然后在3秒内让调试的元素展示出来,执行到debugger界面元素就不会消失了 阅读全文
posted @ 2025-04-24 16:27 青争竹马 阅读(39) 评论(0) 推荐(0)
摘要: 添加变量 在目录 /etc/profile.d 中添加 xxxx.sh 文件 export V2_PROV_ConnectionStrings__DefaultRedis="127.0.0.1:6379,name=xxxx,password=,defaultDatabase=0" 使之生效命令 so 阅读全文
posted @ 2025-03-10 09:33 青争竹马 阅读(79) 评论(0) 推荐(0)
摘要: 当前 Node.js 版本 16.18.1、Yarn 版本 v1.22.22 安装 npm-run-all 切换项目根目录执行 yarn add npm-run-all --dev -W 在根目录 package.json 文件中 "scripts": { "serve": "run-p serve 阅读全文
posted @ 2025-03-07 16:43 青争竹马 阅读(85) 评论(0) 推荐(0)
摘要: 实现效果:访问 http://localhost:8082/api/xxxxxxx 所有的地址请求将反向代理至 http://192.168.1.15:7010/api/xxxxxx 修改 manifest.json 文件 在UniApp项目中,可以通过修改manifest.json文件来配置反向代 阅读全文
posted @ 2025-02-28 15:09 青争竹马 阅读(1024) 评论(0) 推荐(0)
摘要: 升级到 abp.io 7.4 EF报错 System.Data.SqlTypes.SqlNullValueException: Data is Null. This method or property cannot be called on Null values. at Microsoft.Da 阅读全文
posted @ 2023-12-06 15:07 青争竹马 阅读(232) 评论(0) 推荐(0)
摘要: 拉取镜像 docker pull docker.elastic.co/kibana/kibana:7.12.0 运行并添加容器后台运行,指定Elasticsearch地址为http://localhost:9200 docker run --name kib01 -d -p 5601:5601 -e 阅读全文
posted @ 2023-03-31 23:52 青争竹马 阅读(36) 评论(0) 推荐(0)
摘要: There was a problem importing one of the Python modules required to run yum. The error leading to this problem was: Please install a package which provides this module, or verify that the module is installed correctly. It's possible that the above module doesn't match the current version of Python, which is: 阅读全文
posted @ 2023-03-31 17:02 青争竹马 阅读(125) 评论(0) 推荐(0)
摘要: 在 IIS 上启用 Websocket 在 Windows Server 2012 或更高版本上启用对 WebSocket 协议的支持: 备注 使用 IIS Express 时无需执行这些步骤 通过“管理”菜单或“服务器管理器”中的链接使用“添加角色和功能”向导。 选择“基于角色或基于功能的安装”。 阅读全文
posted @ 2023-03-30 13:28 青争竹马 阅读(367) 评论(0) 推荐(0)