1. 程式人生 > >【react】react學習筆記

【react】react學習筆記

教程 內部 意思 one docs 分享 log 標識 dom

1.jsx {}中支持三元表達式,不支持if else,用&&效果和if else一樣

2.樣式支持內聯樣式,駝峰式命名

技術分享圖片

3.允許插入數組,模板自動展開

技術分享圖片

4.事件

onChange onClick

5.兩個組件定義屬性,一個是key,一個是ref

Key是唯一

Ref給組件內部dom一個標識

Reactdom.refs.refname獲取

5.組件生命周期5件套

看名字就懂什麽意思了,常用的周期事件

技術分享圖片

參考資料:

  1. http://www.ruanyifeng.com/blog/2015/03/react.html 阮大佬
  2. https://react.docschina.org/docs/react-component.html#props 中文文檔
  3. http://www.runoob.com/react/react-tutorial.html 菜鳥教程(老版本了,api有些已經過時了)

【react】react學習筆記