2021年7月13日

System.InvalidOperationException: Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found or is out of date.

摘要: PS E:\C#\core\mvc\mvctest> dotnet run正在生成...crit: Microsoft.AspNetCore.Server.Kestrel[0]Unable to start Kestrel.System.InvalidOperationException: Unab 阅读全文

posted @ 2021-07-13 20:49 zyp_java_net 阅读(774) 评论(0) 推荐(0) 编辑

2021年5月12日

解决(ASP .NET5)部署到centos验证码无法显示问题

摘要: 系统采用是System.Drawing.Imaging类库进行绘图。 查阅资料得知, linux没有 libgdiplus。 二、解决办法1、先安装安装mlocate这个包 yum -y install mlocate 2、更新一下库 updatedb 3、安装一下 libgdiplus 库,搞定 阅读全文

posted @ 2021-05-12 19:56 zyp_java_net 阅读(91) 评论(0) 推荐(0) 编辑

2021年4月29日

Windows Server 2012 R2 上安装PostgreSQL 13

摘要: 第一步 安装Windows Server 2012 升级补丁 按照顺序安装 Windows8.1-KB2939087-x64.msu Windows8.1-KB2975061-x64.msu Windows8.1-KB2919355-x64.msu Windows8.1-KB2999226-x64. 阅读全文

posted @ 2021-04-29 15:34 zyp_java_net 阅读(1258) 评论(0) 推荐(0) 编辑

2021年4月26日

ls-remote -h -t git://github.com/adobe-webplatform/eve.git 报错问题

摘要: 解决方案 cd 项目根目录 git config --global url."https://".insteadOf git:// 阅读全文

posted @ 2021-04-26 21:07 zyp_java_net 阅读(991) 评论(0) 推荐(0) 编辑

2021年4月25日

github网站打不开怎么办(无需改host)

摘要: github打不开时只需在浏览器中输入一次github的IP地址即可。具体步骤如下: 1、通过站长工具找出DNS地址:进入站长工具网站的域名解析网址:http://tool.chinaz.com/dns/ ,在A类型的查询中输入github.com,找出最快的IP地址; 2、然后在浏览器输入最快的I 阅读全文

posted @ 2021-04-25 21:19 zyp_java_net 阅读(42871) 评论(1) 推荐(0) 编辑

2021年4月18日

go get无法下载第三方库的解决方法

摘要: 解决方案1、设置 go 模块GOPROXY=https://goproxy.cn2、找到 C:\Windows\System32\drivers\etc\host这个文件,使用编辑器打开在它的最后一段下加上: 192.30.253.113 github.com192.30.252.131 githu 阅读全文

posted @ 2021-04-18 16:53 zyp_java_net 阅读(220) 评论(0) 推荐(0) 编辑

2021年4月12日

vue 跳转 同一路由不刷新问题解决

摘要: vue跳转同一路径时,路由参数改变,但页面无法更新 问题原因 vue路由切换实际是组件间的切换,引用相同组件的时候,页面就无法更新 解决方案 方案1.watch监听路由参数变化,并重新渲染(谨慎选择) 该可以实现页面重新加载数据效果,但会出现页面单独刷新出错,滚动条没有返回顶部问题,根据业务需要选择 阅读全文

posted @ 2021-04-12 10:13 zyp_java_net 阅读(515) 评论(0) 推荐(0) 编辑

2021年3月29日

git 常用命令

摘要: git clone 指定分支项目git clone -b dev http://****** 切换到master分支git checkout master 查看已有的本地及远程分支git branch -a 删除远程分支git push origin --delete ly_zhangyanpeng 阅读全文

posted @ 2021-03-29 13:08 zyp_java_net 阅读(31) 评论(0) 推荐(0) 编辑

2021年3月15日

node-sass 安装不成功

摘要: 为了使用稳定和快捷,先设置淘宝镜像源。执行下面的命令行 npm config set registry https://registry.npm.taobao.org/ 设置变量 sass_binary_site,指向淘宝镜像地址。执行下面的命令行 npm config set sass_binar 阅读全文

posted @ 2021-03-15 13:58 zyp_java_net 阅读(69) 评论(0) 推荐(0) 编辑

2021年2月23日

Echarts中的饼图的某块由于数据太小导致占比太小,图形上几乎看不见问题的解决方案

摘要: 数据过多,且几个比较小的数据在一块扎堆 解决方案 在series中的一个对象中 添加属性 minAngle 阅读全文

posted @ 2021-02-23 08:39 zyp_java_net 阅读(1277) 评论(0) 推荐(0) 编辑

导航