분류 | 게시판 |
베스트 |
|
유머 |
|
이야기 |
|
이슈 |
|
생활 |
|
취미 |
|
학술 |
|
방송연예 |
|
방송프로그램 |
|
디지털 |
|
스포츠 |
|
야구팀 |
|
게임1 |
|
게임2 |
|
기타 |
|
운영 |
|
임시게시판 |
|
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;
제가 놓치고 있는 부분이 있나요?
죄송합니다. 댓글 작성은 회원만 가능합니다.