React native 開發遇到的問題彙總

2021-08-01 13:33:12 字數 899 閱讀 9519

1 手機適配的問題

android ios 平台不一樣,於是手機適配的方法為

export function

hotelr

() else

}

該結果在不同的機器上的結果值是不一樣的,目前發現在小公尺note等機器 結果為1.09….. 介面顯示不出來,後將該返回值改為1 正確顯示,後發現在不同的機器上顯示的值不一樣。原因尚不明確。

2 在

hashmap commentmap = new hashmap<>();

commentmap.put("hotelid", hotelid);

commentmap.put("hoteltype", hoteltype);

commentmap.put("hotelstar", staretype.getvalue());

commentmap.put("netinfo", hotelutils.iswifi(context) == true ? 1 : 0);

string encode = null;

string str = new org.json.jsonobject(commentmap).tostring();

try catch (unsupportedencodingexception e)

string hosturl = "";

ctriph5manager.openurl(context, stringbuilder.tostring(), "");

這裡顯示的關鍵是

string str = new org.json

.jsonobject(commentmap).tostring()

轉化為 json 字串。

react native遇到的坑

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

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.uncaught typeerror super expression must either be null or a function,not 原因 在元件化繼承react.component 時 將component 寫成了小寫component 導致這個錯 所以在react native...