摘要: 问题: 项目升级从.net core 3.0 升级到 .net 5后,dotnet run没有问题,dotnet publish时报 “多个类库报检测到包降级: xxx从 4.3.0 降级到 4.0.0。直接从项目引用包以选择不同版本 。”错误,无法生成打包项目。 原因: 依赖项包在包的更高版本上指 阅读全文
posted @ 2021-06-04 10:53 PrinceS 阅读(2284) 评论(0) 推荐(0) 编辑
摘要: npm create umi时报spawn git ENOENT 解决方法:在环境变量的path里加上“C:\Program Files\Git\bin”就可以了,路径根据你的git安装目录做调整。 好文要顶 关注我 收藏该文 张勇辉关注 - 0粉丝 - 0 +加关注 0 0 « 上一篇: 新的博客 阅读全文
posted @ 2020-05-11 15:54 PrinceS 阅读(2682) 评论(0) 推荐(0) 编辑
摘要: <input type="checkbox"ng-change="checkAll()"ng-model="check.isCheckAll"> <input type="checkbox" ng-change="checkAll()" ng-model="isCheckAll"> check.is 阅读全文
posted @ 2020-04-17 15:47 PrinceS 阅读(547) 评论(0) 推荐(0) 编辑
摘要: 安装使用pep8遇到问题 具体安装使用步骤自行百度 执行External Tools=》autopep8 报“使用pep8报Error running 'autopep8': Cannot run program "autopep8" (in directory "xxx"): CreateProc 阅读全文
posted @ 2020-04-16 13:46 PrinceS 阅读(2926) 评论(1) 推荐(0) 编辑
摘要: 在ConfigureServices中 注册JWT必须在注册MVC之前 否则就会报No authenticationScheme was specified, and there was no DefaultChallengeScheme found错误 在Configure中 添加JWT验证也必须 阅读全文
posted @ 2019-10-10 17:25 PrinceS 阅读(6594) 评论(0) 推荐(0) 编辑
摘要: 由于Jenkins没有配置环境变量造成 打开Jenkins=》Manage Jenkins =》Configure System =>全局属性 新增全局变量 健: Path 值: %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbe 阅读全文
posted @ 2019-09-10 15:26 PrinceS 阅读(3806) 评论(0) 推荐(0) 编辑
摘要: npm 安装babel-polyfill npm install --save-dev babel-polyfill 在webpack.base.conf.js文件中将 1 module.exports = { 2 context: path.resolve(__dirname, '../'), 3 阅读全文
posted @ 2019-07-02 16:10 PrinceS 阅读(1566) 评论(0) 推荐(0) 编辑
摘要: 更新VS2019 16.1版本 支持WebService同步调用 在连接服务中->选择客户端选项->Generate Synchronout Operations选择划勾 生成同步操作方法->点击完成 再调用WebService方法中就会有同步方法。 阅读全文
posted @ 2019-06-28 15:17 PrinceS 阅读(783) 评论(0) 推荐(0) 编辑
摘要: 在Windows Server 2008下直接安装SQL Server 2008时,会出现如下错误:必须使用“角色管理工具”安装或配置Microsoft .NET Framework 3.5 SP1 解决方法如下:打开“服务器管理器” ,在“功能”选项中选择“添加功能”并在“添加功能向导”中选择“. 阅读全文
posted @ 2019-06-28 14:51 PrinceS 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 问题:启动nginx没有反应,查看日志提示 bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions) 80端口被占用 阅读全文
posted @ 2019-06-28 14:46 PrinceS 阅读(656) 评论(0) 推荐(0) 编辑