使用element form 表单写注册页的时候,input总会默认填写浏览器之前保存的账号密码 在input属性中加上 auto-complete="new-password",就可以不自动填充 ...
分类:
其他好文 时间:
2021-03-05 13:26:55
阅读次数:
0
环境准备:CentOS7 本文使用Vnc 使用xShell连接服务器,如何连接参考上一篇博客 https://www.cnblogs.com/diaoye/p/14457509.html 1.测试yum命令 yum install telnet -y 测试yum命令是否可用,Complete即为可用 ...
分类:
系统相关 时间:
2021-03-01 13:23:25
阅读次数:
0
原文:Passing State & Calling Functions Between Parent & Children in ReactJS Passing state between components is a common use case. Generally, we use a s ...
分类:
Web程序 时间:
2021-02-20 12:14:04
阅读次数:
0
一、前期准备 1.1 系统要求 Docker 支持 64 位版本 CentOS 7/8,并且要求内核版本不低于 3.10。 CentOS 7 满足最低内核的要求,但由于内核版本比较低,部分功能(如 overlay2 存储层驱动)无法使用,并且部分功能可能不太稳定。 1.2 卸载旧版本 旧版本的 Do ...
分类:
其他好文 时间:
2021-02-19 13:11:49
阅读次数:
0
NMP = Nginx/MySQL/PHP Installation steps of the Nginx 我这里使用 v1.4.4 wget -c http://nginx.org/download/nginx-1.4.4.tar.gz install tar -zxvf nginx-1.7.4. ...
分类:
其他好文 时间:
2021-02-16 12:17:27
阅读次数:
0
正题 题目链接:https://www.luogu.com.cn/problem/AT4995 题目大意 $n$个点的一棵树,上面有一些棋子,每次可以选择两个棋子移动到他们之间的路径上相邻的点上,求最少多少步能移动到一个点上。 \(n\in[1,2000]\) 解题思路 如果固定最终节点的话,这个节 ...
分类:
其他好文 时间:
2021-02-16 12:00:16
阅读次数:
0
当定时器下一个周期到来的时候,上一个周期程序还没有执行完,这种情况需要在第一个周期进入的时候设置timer enabled为false,等执行完成之后再设为true; main() { try { m_timer = new System.Timers.Timer(); m_timer.Interv ...
分类:
Web程序 时间:
2021-01-28 11:41:56
阅读次数:
0
需求背景:选一张海报图片,在海报图片上实现自定义填充文字内容,文字颜色和字体可自定义,且文字区域可以拖动和等比例缩放,最终将文字和海报合成一张新的图片 需要用到的插件:html2canvas(用于将一段html转成canvas) 下面附上整个组件功能代码: /* eslint-disable cam ...
分类:
其他好文 时间:
2021-01-25 10:43:24
阅读次数:
0
Debug high CPU usage in .NET Core In this tutorial, you'll learn how to debug an excessive CPU usage scenario. Using the provided example ASP.NET Core ...
分类:
Web程序 时间:
2021-01-15 11:42:28
阅读次数:
0
安装PHP程序的时候,提示The fileinfo extension is required.,缺少fileinfo 扩展,因为LNmpA没有自行开启,所以需要我们手工去开启fileinfo 扩展。 方法如下:第一步:找到llnmp安装源位置: cd /lnmp1.5/src/php-5.6.9/ ...
分类:
Web程序 时间:
2021-01-15 11:41:32
阅读次数:
0