const API_END_POINT = API_END_POINT
export const request = async (url, option = {}) => {
try {
const fullUrl = `${API_END_POINT}${url}`
const response = await fetch(fullUrl, option)
if (respone.ok) {
const json = await response.json()
return json
}
throw new Error('API 통신 실패')
} catch (e) {
alert(e.message);
}
}
'JS소스모듈' 카테고리의 다른 글
[JS]Array 메소드 - some, every (0) | 2023.03.11 |
---|---|
토큰 만료 갱신 (0) | 2022.11.21 |
허허허헣 (0) | 2022.11.09 |
localstorage에 리소스 저장 및 조회 (0) | 2022.11.09 |
부모 엘리먼트로 올라가면서 셀렉터를 만족하는 가장 가까운 요소를 찾기 (0) | 2022.11.09 |