Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
RIT_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박권수
2021-10-19 17:01:38 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
62f11aa4af5d73219f81ee43e0db148ec25e2523
62f11aa4
1 parent
ff3eba87
feat. 에러 메시지 수정
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
17 deletions
web/src/views/bottleInfo/BottleInfoContainer.tsx
web/src/views/login/LoginContainer.tsx
web/src/views/main/doctor/DoctorMenuContainer.tsx
web/src/views/main/manager/ManagerMenuContainer.tsx
web/src/views/bottleInfo/BottleInfoContainer.tsx
View file @
62f11aa
...
...
@@ -108,9 +108,8 @@ const BottleInfoContainer = (props : BottleInfoProps) => {
Alert.onError('접근 권한이 없습니다.', () => props.history.push('/'));
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => props.history.push('/'));
console.log(e);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => props.history.push('/'));
}
};
...
...
@@ -134,7 +133,7 @@ const BottleInfoContainer = (props : BottleInfoProps) => {
Alert.onError('피드백 등록에 실패했습니다.', () => null);
}
} catch(e : any) {
Alert.onError(
e.response.data.error
, () => fetchData());
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => fetchData());
}
} else {
Alert.onError('피드백 내용을 입력하세요.', () => null);
...
...
web/src/views/login/LoginContainer.tsx
View file @
62f11aa
...
...
@@ -66,7 +66,7 @@ const LoginContainer = (props : LoginProps) => {
Alert.onError('권한이 없는 유저입니다.', () => props.history.push('/'));
}
} catch(e : any) {
Alert.onError(e.response.data.error
, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.'
, () => null);
}
};
...
...
web/src/views/main/doctor/DoctorMenuContainer.tsx
View file @
62f11aa
...
...
@@ -84,7 +84,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}).catch(error => console.log(error));
}
setLoading(false);
} catch(e) {
} catch(e
: any
) {
console.log(e);
setLoading(false);
}
...
...
@@ -152,7 +152,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}
} catch(e : any) {
Alert.onError(
e.response.data.error
, () => null);
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => null);
}
};
...
...
@@ -183,7 +183,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
});
} catch(e : any) {
setLoading(false);
Alert.onError(
e.response.data.error
, () => null);
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => null);
}
};
...
...
@@ -201,7 +201,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
Alert.onError('환자에게 담당의 등록 요청을 실패했습니다.', () => null);
}
} catch(e : any) {
Alert.onError(
e.response.data.error
, () => null);
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => null);
}
};
...
...
@@ -245,7 +245,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}
setLoading(false);
} catch(e : any) {
Alert.onError(
e.response.data.error
, () => null);
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => null);
}
};
...
...
@@ -284,7 +284,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}
} catch(e : any) {
setLoading(false);
Alert.onError(
e.response.data.error
, () => null);
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => null);
}
};
...
...
web/src/views/main/manager/ManagerMenuContainer.tsx
View file @
62f11aa
...
...
@@ -40,7 +40,8 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
Alert.onError(res.data.error, () => null);
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => null);
console.log(e);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
...
...
@@ -67,7 +68,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
}
})
} catch(e : any) {
Alert.onError(
e.response.data.error
, () => setModalUp(false));
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => setModalUp(false));
}
};
...
...
@@ -102,7 +103,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
}
});
} catch(e : any) {
Alert.onError(
e.response.data.error
, () => setModalUp(false));
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => setModalUp(false));
}
};
...
...
@@ -121,7 +122,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
}
});
} catch(e : any) {
Alert.onError(
e.response.data.error
, () => setModalUp(false));
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => setModalUp(false));
}
};
...
...
@@ -138,13 +139,14 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
setValidate(res.data.result ? 'Y' : 'N');
}
}).catch(err => {
Alert.onError(err.response.data.error, () => {
console.log(err);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => {
setModalUp(false);
setValidate('W');
});
})
} catch(e : any) {
Alert.onError(
e.response.data
, () => {
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => {
setModalUp(false);
setValidate('W');
});
...
...
@@ -161,7 +163,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
Alert.onSuccess('탈퇴를 승인했습니다.', fetchData);
}
} catch (e : any) {
Alert.onError(
e.response.data.error
, () => null);
Alert.onError(
'알 수 없는 에러가 발생했습니다.'
, () => null);
}
};
...
...
Please
register
or
login
to post a comment