React 開源元件筆記

風的王子發表於2016-07-20

React 開源元件筆記

開源元件react-native-camera

推薦一個跨平臺的rn-camera-roll: —->https://www.npmjs.com/package/rn-camera-roll


A Camera component for React Native. Also supports barcode scanning!二維碼掃描
原生Android Zxing google
rnpm link不是安裝,而是新增原生依賴,對應的元件已經安裝好了才能rnpm link
通過這個例子來理解下react native的架構:js環境 jsBridge native環境
業務邏輯是reactJs處理  ui用react寫 但實際橋接成native
ref的兩種屬性:String屬性 回撥屬性(元件render渲染完成後的回撥)
官網:https://facebook.github.io/react ... -callback-attribute
this callback will be executed immediately after the component is mounted(元件render之後DidMount之前)

相關文章