티스토리 뷰
errorHandler
// 1번 방법
function errorHandler(tryFunc, errorFn) {
try {
tryFunc();
return true;
} catch (error) {
errorFn();
return false;
}
}
function errorHandler(tryFunc, catchFunc, nextFunc) {
try {
tryFunc();
return true;
} catch (error) {
Console.print(error.message);
catchFunc(nextFunc);
return false;
}
}
// 2번 방법
const inputErrorHandler = (validate, input) => {
try {
validate(input);
return true;
} catch ({ message }) {
Console.print(message);
return false;
}
};
// 3번 방법
const InputErrorHandler = (validate, catchFunc, nextFunc) => {
try {
validate();
return true;
} catch ({ message }) {
Console.print(message);
catchFunc(nextFunc);
return false;
}
};
module.exports = inputErrorHandler;
이용 방법
// 1번 방법
function carFn(){
const check = errorHandler(() => Validation.check(input), errorFn);
if (check) callback(input);
});
}
readCarName(callback) {
Console.readLine(MESSAGE.read_car_name, (input) => {
const check = errorHandler(() => carNameValidation.check(input), view.readCarName, callback);
if (check) callback(input);
});
}
// 2번 방법
InputView.readChallengeCommand((command) => {
const isValidCommand = inputErrorHandler(Validation.challengeCommand, command);
if (!isValidCommand) {
this.#requestChallengeCommand();
return;
}
this.#processChallengeCommand(command);
});
// 3번 방법
readChallengeCommand(callback) {
Console.readLine(`${GAME_MESSAGE.enforce}\n`, (command) => {
const check = InputErrorHandler(
() => Validation.challengeCommand(command),
InputView.readChallengeCommand,
callback
);
if (check) callback(command);
});
},
'자바스크립트' 카테고리의 다른 글
HTTP vs WebSockets 의 특징 및 차이점 (0) | 2023.01.14 |
---|---|
javascript RTS Game 에서 유닛끼리 겹쳐지지 않게 설정하기 && chatGPT의 활용 (1) | 2023.01.09 |
Prettier + ESLint + Airbnb Style을 package.json 변경없이 셋팅하는 방법 (0) | 2022.12.12 |
[23년 업데이트] graphQL에 관하여 // graphQL 이용해보기 (0) | 2022.03.27 |
리액트 Google 로그인 기능 OAuth 만들기 소셜 로그인 (0) | 2022.03.06 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- nextjs
- TopLayer
- env
- 북클럽
- Storybook
- NextApiRequest
- 노개북
- 프론트앤드
- 프리온보딩
- createPortal
- 우아한테크코스
- import/order
- WSL2
- 스토리 북
- 노마드코더
- NextRequest
- 원티드
- 위코드
- CLASS
- nodejs
- 초보
- jest
- C언어
- 윤성우 열혈C프로그래밍
- error
- electron
- React
- 아차산
- javascript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함