1)登陆搭建gitlab的服务器 cd /opt/gitlab/embedded/service/gitlab-rails/config vim gitlab.yml 2) gitlab-ctl restart ...
分类:
系统相关 时间:
2021-05-24 08:07:40
阅读次数:
0
顾名思义: valueOf 返回其原始值 toString 转为字符串 toLocaleString 转为字符串,为地区特定的格式 (几个示例) 1. Number (1234567).valueOf() // 1234567 数字原始值 (1234567).toString() // "12345 ...
分类:
其他好文 时间:
2021-05-24 08:06:48
阅读次数:
0
现象 [root@ln0-181 src]# docker login harbor.spos.lab Authenticating with existing credentials... Login did not succeed, error: Error response from daem ...
分类:
其他好文 时间:
2021-05-24 07:34:00
阅读次数:
0
在做h5上传照片功能时,对照片格式做了以下限制 <input type="file" accept="image/png,image/jpg,image/jpeg" > 但在微信浏览器中,这种写法会无法调用相机,从而直接进入图库 accept="image/*就是正常的 可以把accept="ima ...
分类:
其他好文 时间:
2021-05-24 07:03:49
阅读次数:
0
[获取手机尺寸](https://www.runoob.com/try/try.php?filename=tryjs_screen_all) ...
分类:
移动开发 时间:
2021-05-24 06:52:54
阅读次数:
0
错误如下: mount: wrong fs type, bad option, bad superblock on 192.168.1.7:data/nfsdir2, missing codepage or helper program, or other error (for several fi ...
分类:
其他好文 时间:
2021-05-24 06:40:25
阅读次数:
0
在生产上部署的Ocelot,,ESTABLISHED到达3000后会不间断出现内部服务器错误及too many file等类似字样错误,经排查,因最近进行了服务器迁移,导致部文件描述符部分没有进行配置,进行配置后,故障恢复。整理如下: 一、系统最大文件描述符 查看系统最大文件描述符 cat /pro ...
分类:
其他好文 时间:
2021-05-24 06:29:41
阅读次数:
0
原生input 类型为file时需要对不同参数做出调整 <input type="file" name="file" id="file" accpet=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocume ...
分类:
其他好文 时间:
2021-05-24 06:06:15
阅读次数:
0
修改原生Input 的 file输入框的样式 此处使用了障眼法用以实现与element的相同样式 1.在HTML中使用时可以通过input的label进行快捷的输入框调用 <div> <label for="file" style="position: absolute;"> <div class= ...
分类:
其他好文 时间:
2021-05-24 06:04:34
阅读次数:
0
1 var goodsTotalPrice = checkedGoodsList.Select(s => new 2 { 3 TotalPrice = s.number * s.retail_price 4 }) 5 .Sum(s => s.TotalPrice); ...