이제 http 상태 코드 400의 반환 값을 얻는 프런트 엔드의 예를 보여드리겠습니다. 이제 그것을 여러분과 공유하고 모든 사람에게 참고 자료로 제공하겠습니다.
아래와 같이:
axios.get("/check_mobile_and_sent_code",{withCredentials:true,params:{mobile:formInline.mobile}}).then(res=>{ console.log(res); //if(res.result==true){ if (!this.timer) { this.count = this.TIME_COUNT; this.show = false; this.timer = setInterval(() => { if (this.count > 0 && this.count <= this.TIME_COUNT) { this.count--; } else { this.show = true; clearInterval(this.timer); this.timer = null; } }, 1000) } //} }).catch(error=>{ console.log(error.response.data); console.log(error.response.status); console.log(error.response.headers); console.log('Error', error.message); console.log(error.config); })
사용 시나리오:
백엔드에서 확인된 휴대폰 번호가 이미 존재한다고 판단하면 400을 반환합니다. 이때 오류 조건으로 점프하여 백엔드(400)는 위와 같이 데이터를 반환합니다.
error.response의 반환 값은 다음과 같습니다.
여기서 오류가 직접 출력되면 error.message와 같습니다.
첨부된 것은 상태 코드 200의 반환 값입니다.
The 위의 내용은 모든 사람을 위해 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.
관련 기사:
IE9 이전 버전의 JavaScript 메모리 누수 문제(자세한 요약)
JavaScript 개발의 디자인 모드에서 Facade 외관 모드 적용(고급)
JavaScript 디자인 사용 튜토리얼 패턴 개발의 결합 패턴(고급)
위 내용은 프런트 엔드는 http 상태 코드 400의 반환 값 예를 얻습니다_기본 튜토리얼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!