Rreact Native 常見錯誤總結
1.invariant violation:expected a component class,got[object object]
創建自定義組件首字母要大寫,否則會報錯.
2.Module 0 is not a registered callable module.
將gradle升級成最新版本(cd android 進入android目錄執行:sudo ./gradlew clean) 或者通過android studio工具升級.
3.android.view.WindowManager$BadTokenException: Unable to add window -- token null is not valid; is your activity running?
該錯誤屬於安卓Native的錯誤,如果引用的Activity不存在或者已經銷毀,再次引用就會報該錯誤,如果是react native 調用原生控件的話,創建控件需要引用:getCurrentActivity()
4.android.app.Application cannot be cast to com.facebook.react.ReactApplication
需要將創建的MainApplication在AndroidManifest.xml配置好. 5.Element type is invalid: expected a string (for built-in components) or a class/function but got: object發生該錯誤的一般是忘記bind(this),只要回調函數中需要用到this的,一般都需要bind.
7.react native - expected a component class, got [object Object]
該錯誤可能是你引用了小寫的組件,組件首字母一定要大寫,比如<login/>應該寫成<Login/>
引用原文:http://blog.csdn.net/jj120522/article/details/51900016
寫博客是為了記住自己容易忘記的東西,另外也是對自己工作的總結,文章可以轉載,無需版權。希望盡自己的努力,做到更好,大家一起努力進步!
如果有什麽問題,歡迎大家一起探討,代碼如有問題,歡迎各位大神指正!
Rreact Native 常見錯誤總結