前提・実現したいこと
Next.js(React.js)でタイマーアプリを作っています。
Email + PassWordの組み合わせで認証機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
Server Error
Error: Error serializing `.currentUser` returned from `getServerSideProps` in "/". Reason: `undefined` cannot be serialized as JSON. Please use `null` or omit this value.
該当のソースコード
root/src/pages/settings.tsx
React.js
1 2//ssr 3import nookies from 'nookies'; 4... 5 6export const getServerSideProps = async (ctx: GetServerSidePropsContext) => { 7 try { 8 //cookieのuid取得 9 const cookies = nookies.get(ctx); 10 const { uid } = cookies; 11 if (uid == 'undefined') { 12 return { 13 redirect: { 14 destination: '/login', 15 permanent: false, 16 }, 17 }; 18 } 19 20 return { 21 props: { currentUser: uid }, 22 }; 23 } catch (err) { 24 return { 25 redirect: { 26 destination: '/login', 27 permanent: false, 28 }, 29 }; 30 } 31}; 32 33type SettingProps = { 34 currentUser: string; 35}; 36 37const SettingPage: React.FC<SettingProps> = ({ currentUser }) => { 38 const router = useRouter(); 39 40 //state 41 const [xxx, setxxx] = useState(null); 42 ...
root/src/pages/index.tsx
React.js
1import nookies from 'nookies'; 2... 3 4//ssr 5export const getServerSideProps = async (ctx: GetServerSidePropsContext) => { 6 try { 7 //cookieのuserid取得 8 //ssrだとhooksが使えずuseContextで取得できないため仕方なくcookieにもuserid情報持たせている状態 9 const cookies = nookies.get(ctx); 10 const { uid } = cookies; 11 if (uid == 'undefined') { 12 return { 13 redirect: { 14 destination: '/login', 15 permanent: false, 16 }, 17 }; 18 } 19 20 return { 21 props: { currentUser: uid }, 22 }; 23 } catch (err) { 24 return { 25 redirect: { 26 destination: '/login', 27 permanent: false, 28 }, 29 }; 30 } 31};
試したこと
率直にエラーコードを解釈すると
「getServerSideProps
が返却したcurrentUser
のシリアル化中にエラーが発生した。JSONとしてシリアル化するためにはnull
を使用するか、この値を省略してください」と言われているので以下の記事を参考にコードを変更しました。
https://github.com/vercel/next.js/discussions/11209#discussioncomment-35915
root/src/pages/index.tsx
//ssr export const getServerSideProps = async (ctx: GetServerSidePropsContext) => { try { const props = await getServerSideProps() //ここを追加 const cookies = nookies.get(ctx); const { uid } = cookies; if (uid == 'undefined') { return { redirect: { destination: '/login', permanent: false, }, }; } return { props: JSON.parse(JSON.stringify(uid)) } //ここを修正
以下のエラーのまま解決していない状況ですのでこの試行は外れかと思いました。
Server Error Error: Error serializing props returned from `getServerSideProps` in "/". Reason: Props must be returned as a plain object from getServerSideProps: `{ props: { ... } }`. This error happened while generating the page. Any console logs will be displayed in the terminal window.
何らかの対応策を教えていただければ幸いです。
補足情報(FW/ツールのバージョンなど)
package.json
"dependencies": { "firebase": "^8.6.5", "next": "10.2.1", "nookies": "^2.5.2", "react": "17.0.2", "react-dom": "17.0.2", }, "devDependencies": { "@types/node": "^15.3.0", "@types/react": "^17.0.6", "@types/react-dom": "^17.0.5", "typescript": "^4.2.4" }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。