更新证书 ./certbot-auto certonly –preferred-challenges dns –server https://acme-v02.api.letsencrypt.org/directory –agree-tos –manual -d ‘*.csorz.com’ 2018-09-05 uncategorized
二维码生成、解析 图片剪裁 二维码生成 https://github.com/davidshimjs/qrcodejs 二维码识别 https://blog.csdn.net/qq\_37705048/article/details/79816438 移动端剪裁: http://www.jq22.com/demo/static\_adjustImg20160705/ 2018-08-29 uncategorized
window.open 窗口垂直居中 12345678910function openWin() { var url = '...'; var name = '在线客服'; var iWidth = 720; var iHeight = 600; var iTop = (window.screen.availHeight - 30 - iHeight) / 2; var i 2018-08-08 uncategorized
微信WeixinJSBridge API 有些过时了,参考地址: https://github.com/Tencent/weui/wiki/%E5%BE%AE%E4%BF%A1JSAPI https://www.cnblogs.com/txw1958/p/WeixinJSBridge-api.html 123456789101112131415161718192021222324252627282930313233343536373839 2018-08-08 uncategorized
vscode、atom、webstorm中使用editorConfig插件 一、vscode 更目录下新建.editorconfig文件 12345678910111213root = true[*]charset = utf-8indent_style = spaceindent_size = 2end_of_line = lfinsert_final_newline = truetrim_trailing_whitespace = true[*.md]trim_tra 2018-07-31 uncategorized
开发环境菜单配置备份 -– 用户中心: 应用管理: “/passport/application/list” 用户管理: “/passport/user/list” 群组管理: “/passport/group/list” 标签分类管理: “/passport/tagCatalog/list” OSS 2018-07-31 uncategorized
【fork】移动端开发遇到的一些问题 来源:键盘上的眼泪 segmentfault.com/a/1190000015178877 1.解决页面使用overflow: scroll在iOS上滑动卡顿的问题? 首先你可能会给页面的html和body增加了height: 100%, 然后就可能造成IOS上页面滑动的卡顿问题。解决方案是: (1) 看是否能把body和html的height: 100%去除掉。 (2) 在滚 2018-07-25 uncategorized
用markdown写文档 12345678910111213141516171819202122# 自定义双向消息说明文档## 一、变量说明--------------- - {courseId} 课程ID - {userName} 用户名 - {tisClientId} 聊天服务ID - {schoolId} 2018-07-25 uncategorized
Vue 复用统一页面组件 //1.监听路由变化,最优 watch: { ‘$route’(to, from) { console.log(to.query) console.log(from.query)// 在此调用函数 if (to.data=== ‘1’) { } } } //2.加载两次组件,一般 import comp1 f 2018-07-24 uncategorized
webrtc 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210 2018-07-19 uncategorized