react native 遇到的問題整理

2021-07-29 14:11:24 字數 515 閱讀 9419

1.uncaught typeerror: super expression must either be null or a function, not

原因  在元件化繼承react.component 時  將component 寫成了小寫component   導致這個錯   所以在react native 中一定要注意大小寫。

2.在自己編輯了乙個繼承component後在別的地方引用總是有問題,提示找不到這個元件,可能的原因

a.可能是你的引用位址沒寫對。

b.可能是你的檔名後面沒有寫.js

c.可能是你的檔案沒有export defult filename 或者module.export = classname

(其中export 方式引用要用import    而 module 引用則需要用require(路徑))

3.在你編寫乙個function 後再return中返回乙個view  但是總是顯示不出來這個view   可能的原因:

a.標籤要與 return 併排。

React Native 開發過程中遇到的問題

問題1 view巢狀scrollview時,scrollview不能滾動。view巢狀listview時,listview不能滾動。react native scrollview inside view doesn t scroll.react native listview inside view...

react native遇到的坑

1 模擬器報錯no bundle url present 2 模擬器快捷鍵 3 新開乙個react native專案,執行時可能會報錯 提示專案未註冊 此時重啟機器 4 android真機除錯報錯 5 用react native init初始化乙個專案直接執行報錯 原因可能是react native...

配置react native遇到的問題

折騰了兩天終於解決了問題,一開始用模擬器是報如下圖的錯 然後用真機的時候又報下圖的錯 這個錯誤網上有很多解決方法,說是要降級處理,將build.gradle中的1.3.1改成1.2.3,但是改完之後問題依然沒有解決,我的手機是魅藍note2,又在網上搜了下,有人說是本身手機連線有問題。也確實試了其他...