摘要: MongoDB 安装 官网:https://www.mongodb.com/ 手册:https://docs.mongodb.org/manual/ win7系统需要安装补丁,KB2731284 安装完成配置环境变量: C:\Program Files\MongoDB\Server\3.0\bin 阅读全文
posted @ 2018-01-05 18:11 CorderBob 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1. 什么是全栈工程师 Full-Stack Engineer Facaebook只招全栈工程师? Web开发流程 产品经理-->交互设计-->视觉设计-->开发(前端、后端)-->测试-->发布 流水线的优势 “各司其职”的弊端 工程师职责不清导致效率低 工程师缺乏主人感导致产品质量差 工程师缺乏 阅读全文
posted @ 2017-12-19 16:25 CorderBob 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 第1章 HTML 标记与文档结构 第2章 CSS 工作原理 2.1、为文档添加样式的三种方法 行内样式、嵌入样式、链接样式 2.2、选择符 子选择符>:标签1 > 标签2(标签2 必须是标签1 的子元素) 紧邻同胞选择符+:标签1 + 标签2(标签2 必须紧跟在其同胞标签1 的后面) 一般同胞选择符 阅读全文
posted @ 2017-12-19 16:19 CorderBob 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 加载中... 弹出toast 阅读全文
posted @ 2017-12-11 15:32 CorderBob 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 加载中... 加载中 阅读全文
posted @ 2017-12-11 15:15 CorderBob 阅读(342) 评论(0) 推荐(0) 编辑
摘要: var firstInterval; var secondInterval; function firstFunction(){ if(firstInterval) clearInterval(firstInterval); //code... firstInterval = setInterval('firstFunction()', 1000); } ... 阅读全文
posted @ 2017-12-08 11:09 CorderBob 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 1.ios 时间显示NAN 把中横线换成斜杠 new Date("2017-11-23 16:58:51".replace(/-/g,'/')) 阅读全文
posted @ 2017-11-23 17:01 CorderBob 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 1.获取微信公众号接口 https://open.weixin.qq.com/qr/code?username=jsxc-china 2.判断是否是微信打开 function isWeiXin() { var ua = window.navigator.userAgent.toLowerCase() 阅读全文
posted @ 2017-11-18 11:00 CorderBob 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 右侧划出 close 111 222 333 22 阅读全文
posted @ 2017-11-01 22:27 CorderBob 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 计算公式: 写入CSS的尺寸/屏幕宽度 = UI图标注的尺寸/UI图宽度 因此: 写入CSS的尺寸 = UI图标注的尺寸/UI图宽度*屏幕宽度 比如:当标注尺寸为64px、UI图宽度为1440px时,针对不同屏幕宽度,写入CSS的属性分别为: 屏幕宽度320px:font-size: 64/1440 阅读全文
posted @ 2017-11-01 10:35 CorderBob 阅读(361) 评论(0) 推荐(0) 编辑