[ Next ] router.query 새로고침 시 쿼리 데이터 날아가는 오류 // 라우터 새로고침 시 라우터 쿼리 값이 undefined인 경우 해결 방법 useEffect(() => { if(router.isReady){ const { seriesInfo } = router.query; if (seriesInfo) { getWork(); }; } }, [router.isReady]) 카테고리 없음 라넌.B 2023.04.07
[ ANGULAR ] Angular Router new tab const url = this.router.serializeUrl( this.router.createUrlTree([`user/1`]) ); window.open(url, '_blank'); FE/Angular HEON.D 2022.07.20