2015-09-29 Jason Liao
这个是 simple Todo with React and 的第二部 - Reflux 第一部可以看 simple Todo with React and Flux 也可以看 学习flux的一些浅显理解 继续阅读 »
2015-09-17 Jason Liao
FunctionDeclaration : function Identifier ( FormalParameterList opt ) { FunctionBody } FunctionExpression : function Identifier opt ( FormalParameterList opt ) { FunctionBody } 继续阅读 »
2015-09-09 Jason Liao
function 里的 this 在不同的时候,会有不同的表现,一般会有以下四种情况 Invocation as a function Invocation as a method Invocation as a constructor Invocatuon with the apply() and call() method 继续阅读 »
2015-08-30 Jason Liao
Floats, absolutely positioned elements, block containers (such as inline-blocks, table-cells, and table-captions) that are not block boxes, and block boxes with 'overflow' other than 'visible' (except when that value has been propagated to the viewport) establish new block formatting contexts for their contents. 继续阅读 »
2015-08-06 Jason Liao
先通过一张图来了解一下 prototype 和 __proto__ 继续阅读 »
2015-07-24 Jason Liao
这是 Facebook 官方学习 Flux 的 demo 这是我用 ES6 重写的版本,可以看有什么不同喔 继续阅读 »
2015-07-21 Jason Liao
click here! I rewrite all the demos with ES6, some note here, source code here 继续阅读 »
2015-06-12 Jason Liao
在看 JavaScript 框架设计的时候,知道了 jQuery 可以批量处理是因为一个叫数组化的概念,然后再对数组对象进行扩展,让数组可以完成更多的事情,但在扩展之前,先来看看几个原型方法 Array.prototype.slice 继续阅读 »
2015-06-07 Jason Liao
Installation npm install express Usage ```javascript var express = require('express'); var app = express(); 继续阅读 »
2015-05-27 Jason Liao
《Node.js in Action》这本书在2013年出版,所以里面很多的代码在现在的环境跑起来都是跑不通的,下面我就会说说在我学习第八章Express的时候,遇到的那些坑 第八章一开始就以一个简单的应用 Photo 来教我们如何运用Express去渲染页面,去处理表单的上传,还有文件的下载 继续阅读 »