首頁 >
React JS學習
React JS學習 2016-05-16
render
getInitialState :在组件挂载之前调用一次。返回值将会作为 this.state 的初始值。
componentDidMount:在初始化渲染执行之后立刻调用一次,仅客户端有效(服务器端不会调用)。
componentWillUnmount:在组件从 DOM 中移除的时候立刻被调用。
render:render() 方法是必须的。
React API文件庫:
http://itbilu.com/javascript/react/EJiqU81te.html#Children-forEach
React 完整的概論
http://www.ruanyifeng.com/blog/2015/03/react.html
Shadow DOM介紹
http://blog.dontcareabout.us/2012/01/shadow-dom.html
React 與ajax結合
https://facebook.github.io/react/tips/initial-ajax.html
React/Flux最基礎教學(需搭配node)
http://blog.littlelin.info/posts/2015/06/14/note-establishing-flux-app-from-scratch-1