博客园

super.hill

记录搬砖中遇到的坑,欢迎批评指导!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2018年4月16日

摘要: https://blog.csdn.net/voke_/article/details/76418116 摘自此博客 阅读全文
posted @ 2018-04-16 10:57 超岭 阅读(161) 评论(0) 推荐(0) 编辑

2018年4月13日

摘要: npm i create-react-app -g 全局安装 create-react-app mydemo 创建一个项目,安装依赖 cd mydemo 进入mydemo目录 yearn start 运行 阅读全文
posted @ 2018-04-13 16:05 超岭 阅读(143) 评论(0) 推荐(0) 编辑

摘要: 1.npm i vue-cli -g 全局安装 2.vue init webpack myProject 3.cd myProject 4.npm i 稍等片刻 完成运行下一步 5.npm run dev 阅读全文
posted @ 2018-04-13 16:01 超岭 阅读(208) 评论(0) 推荐(0) 编辑

2018年4月9日

摘要: git merge b1 b2 有冲突,解决冲突合并 CONFLICT (content): Merge conflict in index.htmlAutomatic merge failed; fix conflicts and then commit the result. 此时分支的状态(m 阅读全文
posted @ 2018-04-09 09:52 超岭 阅读(133) 评论(0) 推荐(0) 编辑

2018年3月29日

摘要: git log --stat git show <hashcode> <filename> git log --pretty=oneline <filename> git whatchanged <filename> git show <hashcode> 阅读全文
posted @ 2018-03-29 11:50 超岭 阅读(696) 评论(0) 推荐(0) 编辑

2018年3月22日

摘要: 加密 url +? btoa(param) 解密 url + ?atob(param) 阅读全文
posted @ 2018-03-22 15:51 超岭 阅读(254) 评论(0) 推荐(0) 编辑

2018年3月20日

摘要: // 09-集成提测工作流var node_list_info09 = { '090101': '客户端集成自测', '090201': '编译配置', '090202': '编译出包', '090301': '动态代码扫描', '090302': '冒烟测试', '090401': '新功能测试' 阅读全文
posted @ 2018-03-20 12:12 超岭 阅读(966) 评论(0) 推荐(0) 编辑

2018年3月16日

摘要: 左右并列两个容器,左边的不固定高度,右侧的高度要和左边的高度一致, var offsetHeight = $('.left).outerHeight(); $('.right').outerHeight(offsetHeight); 因为获取的容器是动态的,内容的多少会导致高度变化,在created 阅读全文
posted @ 2018-03-16 17:51 超岭 阅读(2273) 评论(0) 推荐(0) 编辑

2018年3月14日

摘要: let u = navigator.userAgent; let isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; let isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/ 阅读全文
posted @ 2018-03-14 17:55 超岭 阅读(388) 评论(0) 推荐(0) 编辑

2018年3月13日

摘要: 下载链接http://nginx.org/en/download.html 阅读全文
posted @ 2018-03-13 18:16 超岭 阅读(285) 评论(0) 推荐(0) 编辑

博客园