this.props.signIn(submittedForm) Error
143
1 asked
안녕하세요 강사님!! 강의 정말
잘듣고 있습니다!
코드는 그대로 작성했는데 에러가나서 혹시 해결방안좀 제시해 주 실수 있나 싶어서 글올립니다.
로그인시 에러가 발생합니다.!
submitUser = () => {
// Init.
let isFormValid = true;
let submittedForm = {};
const formCopy = this.state.form;
for (let key in formCopy) {
if (this.state.type === '로그인') {
if (key !== 'confirmPassword') {
isFormValid = isFormValid && formCopy[key].valid;
submittedForm[key] = formCopy[key].value;
}
} else {
isFormValid = isFormValid && formCopy[key].valid;
submittedForm[key] = formCopy[key].value;
}
}
if (isFormValid) {
if (this.state.type === '로그인') {
this.props.signIn(submittedForm).then(()=>{
this.manageAccess();
})
} else {
this.props.signUp(submittedForm).then(()=>{
this.manageAccess();
})
}
} else {
this.setState({
hasErrors: true
})
}
}
Answer 0
더백님 감사합니다
1
37
1
39. Main화면 추가 UI 에서 자료는 어디서 받나요??
0
36
1
미션 마감일시를 좀 늘려주세요
0
45
1
개인브랜딩 사이트 만들기가 마감일시가 있었네요.
0
38
1
최종 과제 제출
0
82
3
주사위앱 소개 및 레이아웃 설정 문제
0
59
2
파이어베이스 문의
0
41
2
라우터 궁금사항
0
36
1
secureTextEntry 설정에 관해
0
58
2
expo 55 tabs 사라짐 이슈
0
82
2
searchable이 화면 하단에 위치해요
0
62
2
환불관련 문의 드립니다.
0
144
1
windows 환경 npx pod-install ios 실행 에러
0
1473
1
굳이 react-native-text-truncate를 사용하는 이유가 있나요?
0
282
0
현업에서 action creator 함수가 비동기인 경우가 많이 있나요?
0
199
0
android debugger 연결이 안 됩니다.
0
394
0
클래스형 함수형 질문있습니다
0
235
0
Error: Unable to resolve module ./debugger-ui/debuggerWorker.aca173c4 에러
0
742
0
AsyncStorage를 이용한 Token 읽어오기에서 GetToken이 undefined를 반환합니다.
0
182
0
ios 시뮬레이터 실행 오류 납니다.An error was encountered processing the command (domain=com.apple.CoreSimulator.SimError, code=405)
0
4460
1
Could not find "store" in the context of "Connect(AuthForm)"
1
716
1
ReferenceError: Can't find variable: _UIManager 이런 에러가 나는데 혹시 어떻게 해결해야할지 알 수 있을까요?
0
293
0
React Navigation 셋업 오류
0
1260
1
에러가 납니다...
0
545
1

