onError=(syntheticEvent)=>
{
const { nativeEvent } = syntheticEvent;
Alert.alert("onError",syntheticEvent.code+"");
};
웹뷰에서 연결 안되면 에러코드를 받으려고 합니다.
https://github.com/react-native-webview/react-native-webview/blob/master/docs/Reference.md
질문입니다.
이해안됌
Alert.alert("onError",syntheticEvent.code+"");
이렇게 사용하면 undefined에러가 나옵니다.
정상
Alert.alert("onError",nativeEvent .code+"");
이렇게 하면 정상적인 에러코드-8번이 나옵니다.
const에 넣고?? 사용하면 값이 달라진다는게 이해가 안됩니다.
const { nativeEvent } = syntheticEvent;
제가 놓치고 있는 부분이 있나요?