摘要: IFCModel加载后返回的数据结构 obj返回的mesh结构 阅读全文
posted @ 2022-04-06 17:21 三剑客 阅读(57) 评论(0) 推荐(0) 编辑
摘要: apt-cyg install nano 安装cyg包 配置.zshrc export TERM=cygwin //backspace才可用 阅读全文
posted @ 2017-05-10 11:20 三剑客 阅读(239) 评论(0) 推荐(0) 编辑
摘要: new webpack.DefinePlugin({ DESCRIPTION: 'This Is The Test Text.' }) new webpack.ProvidePlugin({ 'React': 'react' })https://yuyang041060120.github.io/2 阅读全文
posted @ 2017-05-04 14:29 三剑客 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Sublime text 3搭建React.js开发环境 emmet package安装 The only place where you can assign this.state is the constructor. ( 其他地方必须用setState()) User-Defined Comp 阅读全文
posted @ 2017-05-03 14:50 三剑客 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 1.垂直居中 http://zhaobinglong.github.io/css-center/ http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html 2.敏捷开发,bug级别划分 3.bash构建,设计模式 4.git reset rev 阅读全文
posted @ 2016-09-02 10:25 三剑客 阅读(273) 评论(0) 推荐(0) 编辑
摘要: let命令所在的代码块内有效,const声明一个只读的常量。 let [foo, [[bar], baz]] = [1, [[2], 3]];//数组的解构赋值 var { foo, bar } = { foo: "aaa", bar: "bbb" };//对象的解构赋值 number扩充 ES6在 阅读全文
posted @ 2016-08-31 09:29 三剑客 阅读(429) 评论(0) 推荐(0) 编辑
摘要: git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh chsh -s /bin/zsh 编辑 ~/.zshrc ZSH_THEME = "robbyrussell" man commandxx 查看某个命令的使用说明 权 阅读全文
posted @ 2016-06-15 16:53 三剑客 阅读(674) 评论(0) 推荐(0) 编辑
摘要: 管道(|)运算符会将一个命令的输出以流的方式作为另一个命令的输入。 重定向(>)运算符则会将输出重定向到文件。 在Unix中,还可以通过“&”运算符同时运行两个命令。npm run script1.js & npm run script2.js npm-run-all A CLI tool to r 阅读全文
posted @ 2016-06-15 13:48 三剑客 阅读(189) 评论(0) 推荐(0) 编辑
摘要: jquery事件 mouseenter,mouseleave ,而不是用mouseover,mouseout(移动到子元素也会触发) contentType : "application/json" post传只有value的值参数时 需要设置这个 需要JSON.stingify()来格式化(双引号 阅读全文
posted @ 2014-10-11 09:50 三剑客 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 具体以源码为准Talent继承自Marionette继承自BackBoneRegion: 继承自Backbone.Event,show(view)会调用view.render(),然后$el.append(view.el),触发相应的事件Layout: 继承自 ItemView,可以设置regi... 阅读全文
posted @ 2014-09-23 11:05 三剑客 阅读(469) 评论(0) 推荐(0) 编辑