#Short_note- 가져오기 후크 Nuxt(SSR)의 리디렉션 및 오류 포착

이것은 서버 사이드 렌더링-Nuxt js 애플리케이션의 가져오기 후크에서 오류를 포착한 후 리디렉션하는 방법에 대한 간단한 참고 사항입니다.

async fetch() {

    try{
        // whatever you need 

        const route = this.$router.history.current.path;
        this.routeName = route   
       const finalTitle = route.replace(/\\|\//g, "");
       const res = await 
       this.$axios.$get(`productBySlug/${finalTitle}/`);
       this.obj = res.data;

   }
   catch({response}){
       // others code goes here 
       this.$nuxt.context.redirect({path:'/'})


   }

},

좋은 웹페이지 즐겨찾기