上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 87 下一页
摘要: 1. 使用node-inspector(已过时) 使用npm安装: $ npm install -g node-inspector 然后需要通过浏览器连接到node-inspector,需要启动inspector服务: $ node-inspector & 最后以debug模式运行node.js应用 阅读全文
posted @ 2017-05-15 00:50 全玉 阅读(165) 评论(0) 推荐(0) 编辑
摘要: content-type 媒体类型,即MIME类型,包括媒体格式和编码两部分 例如:Content-Type:text/html;charset:utf-8 常见的媒体格式类型如下: text/html : HTML格式text/plain :纯文本格式 text/xml : XML格式image/ 阅读全文
posted @ 2017-05-15 00:17 全玉 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 1. shell脚本的变量赋值 变量赋值语句中的等号左右不能有空格 即 a = 4 //错误 a=4 //正确 2. shell脚步的执行需要权限 chmod +x shell.sh ./shell.sh //执行shell脚本 阅读全文
posted @ 2017-05-15 00:09 全玉 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 当页面布局和几何属性改变时就需要"重排" 避免在修改样式的过程中使用 offsetTop, scrollTop, clientTop, getComputedStyle() 这些属性, 它们都会刷新渲染队列 最小化重绘和重排, 尽量一次处理a. 使元素脱离文档流(隐藏元素),进行处理后,再显示元素b 阅读全文
posted @ 2017-05-13 21:48 全玉 阅读(224) 评论(0) 推荐(0) 编辑
摘要: autoprefixer配置 // var aPostcss = [require('autoprefixer')({ browsers: ['ios>=3','android>=2','chrome>=4','firefox>=3'] })];var aPostcss = [require('au 阅读全文
posted @ 2017-05-13 18:31 全玉 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 二叉树的结构 二叉树的创建 二叉树的插入节点 二叉树的查找节点 二叉树的比较 清空二叉树 测试代码 阅读全文
posted @ 2017-05-13 18:22 全玉 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 最大高度 function getMaxHeight(root){ if(root == null) return 0; return 1 + Math.max(getMaxHeight(root.left),getMaxHeight(root.right)); } 最小高度 function ge 阅读全文
posted @ 2017-05-13 17:36 全玉 阅读(5121) 评论(0) 推荐(0) 编辑
摘要: 1. vue中获取dom节点时机 vue组件中获取dom节点一定要在mounted周期之后的下一次事件循环,包括 component.$refs,component.$el,component.$children等一般写法在nextTick中获取,mounted不是必须:mounted(){ thi 阅读全文
posted @ 2017-05-13 17:32 全玉 阅读(679) 评论(0) 推荐(0) 编辑
摘要: -webkit-overflow-scrolling: auto; /* 当手指从触摸屏上移开,滚动会立即停止 */ -webkit-overflow-scrolling: touch; /* 当手指从触摸屏上移开,会保持一段时间的滚动 */ 兼容性 Safari iOS 5.0+ -webkit- 阅读全文
posted @ 2017-05-11 23:48 全玉 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 1. 二叉树的深度优先遍历,使用栈Stack, DFS(Depth First Search) function DFS(root){ var stack = []; stack.push(root); var node = null; while(stack.length){ node = sta 阅读全文
posted @ 2017-05-11 00:07 全玉 阅读(439) 评论(0) 推荐(0) 编辑
上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 87 下一页