-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migration Fetch ax in my page #154
Conversation
๐storybook: https://65ccb85d5afe55a024495bc0-xlyaamwkva.chromatic.com/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- ์๊ณ ํ์ จ์ต๋๋ค. Header ๋ฌธ์ ๋ HeaderInit ํ์ ์ Headers, Record, string[][] ๋ชจ๋ ํฌํจ๋์ด ์์ด ๋ฐ์ํ๋ ๊ฒ ๊ฐ์ต๋๋ค. ์ด ๋ฌธ์ ์ ๋ณธ์ง๊ณผ ํด๊ฒฐ ๋ฐฉ๋ฒ์ ๋ํด ๊ณ ๋ฏผํด๋ดค๋๋ฐ์, ์ฐ๋ฆฌ ๋ก์ง์ RequestInterceptor์์ header๊ฐ ๋ฐ๋์ Headers ํ์ ์ด๋ผ๋ฉด Headers ํ์ ์ผ๋ก ๋ณด๋ด์ฃผ๋๋ก ์์ ํ๋ ๊ฒ์ด ๋ฌธ์ ๋ฅผ ์๋ฐฉํ๋ ๋ฐ ํจ๊ณผ์ ์ผ ๊ฒ ๊ฐ์ต๋๋ค.
๊ทธ๋ฌ๋ฉด ์ค๋น ๋ fetch-ax ์ฝ๋๋ฅผ ์์ ํ์ง ์๊ณ ์ง๊ธ์ฒ๋ผ requestInterceptor๋ง์ ์์ ํ๋๊ฒ ๋ซ๋ค๊ณ ๋ง์ํ์๋๊ฒ ๋ง์๊น์!? // ์กธ๋ถ ์ฝ๋
requestInterceptor: (config) => {
//
return config;
},
// fetch-ax ์ฝ๋
const requestHeaders = new Headers();
if (defaultOptions?.headers) {
new Headers(defaultOptions.headers).forEach((value, key) => {
requestHeaders.set(key, value);
});
}
if (requestInit?.headers) {
new Headers(requestInit.headers).forEach((value, key) => {
requestHeaders.set(key, value);
});
} requestInterceptor์์ ๋งค๊ฐ๋ณ์๋ก ๋๊ฒจ์ฃผ๋ config์ header๋ Headers ํ์
์ด๋ฏ๋ก ( ๊ทธ๋ฐ๋ฐ ์ฌ์ฉ์ ์ ์ฅ์์๋ instance์ default option์ผ๋ก Record<string,string> ํ์ ์ผ๋ก ์ค์ ํ์ผ๋ฉด config.headers๋ก Headers ํ์ ์ด ์๋ Record<string,string> ํ์ ์ผ๋ก ์์ํ์ง ์์๊น ์ถ์ต๋๋ค. ์ฌ์ค ์ ๋ ๊ทธ๋ ๊ฒ ์์ํ๊ณ ๋ฌด์์ 415 Error๊ฐ ๋ด์ผ๋๊น,, fetch-ax ์ฝ๋๋ฅผ ๊น๋ณด๊ณ ์์๋ด๋๋ฐ ์๊ฐ์ด ๊ฑธ๋ ธ์ต๋๋ค. ๊ฒฐ๋ก ์ ์ผ๋ก ์ ๋ ์ฌ์ฉ์๊ฐ default Options ์ ์ค์ ํ๋ ํค๋์ ํ์
๊ธฐ๋ฐ์ผ๋ก config.headers์ ๋๊ฒจ์ฃผ๋๊ฒ ์ข์ง ์์๊น ์ถ์๋ฐ ์ด ๋ถ๋ถ์ ๋ํด์ ์ด๋ป๊ฒ ์๊ฐํ์๋์?! |
์, ์ ๋ฌ ๊ณผ์ ์์ ์คํด๊ฐ ์์๋ ๊ฒ ๊ฐ์ต๋๋ค. ์ ๋ fetch-ax๋ฅผ ์์ ํด์ผ ํ๋ค๋ ์ ์ฅ์ ๋๋ค. ๋ค๋ง, ์ ๊ฐ ์์ ๋ง์๋๋ฆฐ ๊ฒ์ fetch-ax์ ํ์ฌ ๋ก์ง์ ์์ ํ์ง ์์ ๊ฒฝ์ฐ์ ๋ํ ๊ฒ์ ๋๋ค. ํ์ฌ ๋ก์ง์์ผ๋ก ๋ณด๋ฉด RequestInterceptor์์ config์ header ํ์ ์ด ๋ฐ๋์ Headers์ธ๋ฐ, ํ์ฌ HeaderInit์ผ๋ก ๋์ด ์์ด ๋ฌธ์ ๊ฐ ๋ฐ์ํ๋ ๊ฒ์ด๋ผ๊ณ ์๊ฐํด ์ผ๋จ ํ์ ์ ์์ ํ๋ ๊ฒ์ด ๊ฐ์ฅ ๊ฐ๋จํ ํด๊ฒฐ์ฑ ์ด๋ผ๊ณ ์๊ฐ๋์ด ๋ง์๋๋ ธ์ต๋๋ค. ์ ๋ ๊ฐ๋ฅํ๋ค๋ฉด default Options ์ค์ ์ ์ง์ ํ ํค๋์ ํ์ ์ ๊ธฐ๋ฐ์ผ๋ก config.headers๋ฅผ ๋๊ฒจ์ฃผ๋ ๊ฒ ์ข๋ค๊ณ ์๊ฐํฉ๋๋ค. ๋ค๋ง, ์ธ์คํด์ค ์์ฑ ์ ํค๋ ์ค์ ํ์ ๊ณผ ์์ฒญ ํธ์ถ ์ ํค๋ ํ์ ์ด ๋ค๋ฅธ ๊ฒฝ์ฐ์๋ ์ด๋ป๊ฒ ํด์ผ ํ ๊น์? ์ด๋ฐ ๊ณ ๋ฏผ ๋๋ฌธ์ Headers ํ์ ์ผ๋ก ํต์ผํ๋ค๊ณ ์๊ฐํ์ต๋๋ค. ๋ฐ๋ผ์ ์ด๋ฌํ ๋ฌธ์ ๋๋ฌธ์ ์ธํฐ์ ํฐ์์๋ Header์ ํ์ ์ Headers๋ก ๊ณ ์ ํ๋ ๊ฒ์ด ์ ์ ํ ๋ฐฉ๋ฒ์ด๋ผ๊ณ ํ๋จํ์ฌ ์๊ฒฌ์ ์ ์ํ์ต๋๋ค. ๋ก์ง ์์์ ๋ถ๋ฆฌ๊ฐ ๊ฐ๋ฅํ๋ค๋ฉด ์ฌ์ฉ์๊ฐ ์ง์ ํ ํค๋์ ํ์ ์ ๊ธฐ๋ฐ์ผ๋ก config.headers๋ฅผ ๋๊ฒจ์ฃผ๋ ๊ฒ๋ ์ ๋ ์ข๋ค๊ณ ์๊ฐํฉ๋๋ค. |
์๊ณ ๋ง์ผ์
จ์ต๋๋ค!
new Header๋ฅผ ํตํด ์์ฑํ ๊ฒฝ์ฐ ์๋์ ๊ฐ์ด ์ ๋ฌ๋๊ณ ์์์ต๋๋ค.
๊ทธ๋์ requestInterceptorํจ์๋ฅผ ์คํํ ์ดํ์ ๋ค์ new Header๋ฅผ ์งํํ๋ ๋ฐฉ์์ ์ทจํด๋ดค๋๋ฐ, ์ ๋ ฅ ํ์ ์ ์๊ด์์ด 2๋ฒ ์๋ต์ ๊ตฌํ ์ ์์ต๋๋ค. ์ด์ ๊ฐ์ด ๋ก์ง์ ๋ณ๊ฒฝํด๋ณด๋ ๊ฒ์ ์ด๋จ๊น์? ์๋๋ ์์๋ก ์์ฑํด๋ณธ ์ฝ๋์ ๋๋ค. requestArgs = requestInit.requestInterceptor(requestArgs);// ๊ธฐ์กด์ฝ๋
//์ถ๊ฐ๋ ์ฝ๋
const headers = new Headers(requestArgs.headers);
headers.forEach((value, key) => {
requestHeaders.set(key, value);
});
requestArgs.headers = requestHeaders; |
Authorization: `Bearer ${cookies().get('accessToken')?.value}`, | ||
}, | ||
await instance.delete(`${API_PATH.takenLectures}/${lectureId}`, { | ||
responseType: 'text', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ถ๊ฐ์ ์ผ๋ก โโ๋ก ์ ๋ฌ๋ฐ๋ ์๋ต์๋ํด์ responseType: 'text',
๋ก ์ฌ์ฉ์๊ฐ ๋ฃ์ด์ฃผ๋ ๊ฒ์ด ์์ธกํ๊ธฐ ์ด๋ ค์ธ ์ ์๋ค๋ ์๊ฐ์ด ๋ค์์ด์. ํด๋น ์ผ์ด์ค๊ฐ Post, patch, delete ๋ฑ์์ ๋น๋ฒํ ๊ฒ์ผ๋ก ์์๋์ด์ fetch-ax์์ ๋ฌธ์์ด ๋น๊ฐ์ ๋ํ ์์ธ์ฒ๋ฆฌ๋ฅผ ์งํํ๋ ๊ฒ์ด ์ด๋จ๊น? ์๊ฐ์ด ๋ค์๋๋ฐ ํ์๋ถ๋ค์ ์๊ฒฌ์ด ๊ถ๊ธํด์!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ด ๋ถ๋ถ์ ๋ํด์๋ responseType, Invalid URL Error ํด๊ฒฐํ๋ฉด์ ๊ฐ์ด ํ์
ํด๋ณด๊ฒ ์ต๋๋ค. ๐ฅน
PR ์ฝ๋ฉํธ์ ๋์์๋ฏ์ด Headers์ ๊ฐ์ด ์์ ํ ์์ ์
๋๋ค~!
๋ง์ํ์ จ๋, "requestInterceptor์ดํ ์ ์ฝ๋ ์ถ๊ฐ" ์ ๋ํ ๋ฐฉ๋ฒ์ ์ ์ฉํด๋ณด์์ต๋๋ค! ๋ค๋ง ํธ๋ฆฌ์ฑ์ ์ํด fetch-ax์ ์ ์ฉํ๋๊ฒ ์๋ interceptor์ ์ ์ฉ์ ํ์ฌ์ Content-Type์ด ์ ์กด์ฌํ๋์ง๋ง ์ฒดํฌ๋ฅผ ํ์์ต๋๋ค. export const instance = fetchAX.create({
headers: {
'Content-Type': 'application/json',
},
responseRejectedInterceptor: (error) => {
fetchAxErrorHandler(error);
},
requestInterceptor: (config) => {
const accessToken = cookies().get('accessToken')?.value;
config.headers = {
...config.headers,
Authorization: `Bearer ${accessToken}`,
};
const requestHeaders = new Headers();
const headers = new Headers(config.headers);
headers.forEach((value, key) => {
requestHeaders.set(key, value);
});
console.log(requestHeaders.get('Content-Type'));
return config;
},
}); config.headers๋ ์ผ๋ฐ ๊ฐ์ฒด ๋ณํ์ผ๋ก ์ธํด Content-Type์ด ๋ ๋ผ๊ฐ ์ํ์ด๊ณ ํด๋น config.headers๋ฅผ ๊ธฐ๋ฐ์ผ๋ก new Headers๋ฅผ ์งํํ๊ณ requestHeaders์ set์ ํด๋ณด์์ต๋๋ค. ํ์ง๋ง ์ด๋ฌํ ํํ์๋ |
@seonghunYang @yougyung
์ด๋ ๊ฒ Headers ํ์
์ผ๋ก ๊ฐ์ ํ๊ฒ ๋๋ฉด ์ฝ๋ ๊ตฌํ์์ ๋ฐ๋ก ์ค๋ฅ๊ฐ ์๊ธฐ๋๊น ์์์น ๋ชปํ ๊ฒฐ๊ณผ ๋ฐ์์ ์ค์ผ ์ ์๊ธฐ ๋๋ฌธ์ ํด๋น ๋ฐฉ์์ด ๊ฐ์ฅ ์ ํฉํ๋ค๊ณ ์๊ฐํ์ต๋๋ค. ์ ๋ฐฉ์๋๋ก ์งํํ๊ฒ ๋๋ฉด |
config.headers์ ํ์
๋ฒ์ฃผ๊ฐ ๋๊ณ , ํนํ Headers์ ์ผ๋ฐ๊ฐ์ฒด์ ๊ฐ ๋ด๋ถ ์์ฑ์ด ํผ์ฉ๋์ง ์๋๋ค๋ ์ฐจ์์์ ์
์ถ๋ ฅํ์
๋ชจ๋ |
๐ ์์ ๋ด์ฉ
๐ค ๊ณ ๋ฏผ ํ๋ ๋ถ๋ถ
๐ ๋์์ด ํ์ํ ๋ถ๋ถ
์ ์ฝ๋์ ๊ฐ์ด instance๋ฅผ ์ฌ์ฉํด์ ๊ณผ๋ชฉ ์ถ๊ฐ api ์์ฒญ์ ์งํํ์ต๋๋ค. ์ด๋ Content-Type์ instance์์ ์ค์ ์ ํ๊ธฐ ๋๋ฌธ์ ๋ณ๋์ ์ค์ ์ ํ์ง ์์๋๋ฐ ์์ฒญ ์ 415 Error๊ฐ ๋ฐ์ํ๊ณ ํ์ธ์ ํด๋ณด๋ instance์ requestInterceptor์ headers๊ฐ ์ ๋๋ก ์ค์ ์ด ๋์ง ์์ ๊ฒ์ ํ์ธํ์ต๋๋ค. ์ ํํ ์์ธ์ ํ์ ํ์ง๋ ๋ชปํ์ผ๋, config.headers๋ฅผ ์ผ๋ฐ ๊ฐ์ฒด๊ฐ ์๋ Headers ๊ฐ์ฒด๋ก ๋ณ๊ฒฝ์ด ๋์์๋ ํด๊ฒฐ์ด ๋์ต๋๋ค. ํน์ ์ด ์์ธ ์์๋์ ,,
์ด ๋ถ๋ถ์ ๋ํด์๋ responseType, Invalid URL Error ํด๊ฒฐํ๋ฉด์ ๊ฐ์ด ํ์ ํด๋ณด๊ฒ ์ต๋๋ค. ๐ฅน
Myongji-Graduate/fetch-ax#19