해결된 질문
작성
·
249
·
수정됨
0
현재 강의 내용대로라면, 로그인 성공 후 /articles
path로 이동하기 때문에 404 Not Found 페이지가 나타납니다.
그러므로 auth 스토어
의 login 메소드
에서도
/articles
에서 /articles/all
로 router.goto의 path를 변경해야할 것 같습니다.
const login = async (email, password) => {
try {
const options = {
path: "/auth/login",
data: {
email: email,
pwd: password,
},
};
const result = await postApi(options);
set(result);
isRefresh.set(true);
router.goto("/articles/all");
} catch (error) {
throw error;
}
};
답변 1
1
피드 감사합니다.
현재 git에 올라간 프런트엔드 코드에는 이부분이 다음과 같이 되어 있습니다. 영상에 이부분을 반영하지 못했던 것 같습니다.
router.goto("/");
그리고 "/aritlces/all" 로 해도 되지만 혹시라도 후에 라우팅이 또 변경될 수 있기 때문에 로그인 후에는 기본페이지로 이동하는 것이 더 좋을 것 같습니다.
후에 영상에 이부분 반영하도록 하겠습니다.
감사합니다.