反応ネイティブでコンポーネントを条件付きでレンダリングすると問題が発生します。 それは私に、このエラーメッセージを示しています。反応ネイティブでの条件付きレンダリングエラー
JavascriptException: {"stack":"Error: failed to execute 'importScripts' on 'WorkerGlobalScope'
をそしてここでのコードとは何の関係もありませんでした私のコードプリンシペ
export default class App extends Component {
render() {
return(
{this.customRender()}
);
}
customRender() {
var x = true;
if(x) {
return (<View />);
}
else return (<Text>False</Text>);
}
}
多分このスレッドはあなたを助けますか? https://github.com/facebook/react-native/issues/6035 –
デバッグ環境でこのエラーが発生しますか? –