タグ

ブックマーク / qiita.com/Anders (1)

  • next/routerのisReadyフラグ - Qiita

    isReadyとは next.jsのRouterオブジェクトのisReady属性は、routerが完全に準備できているかどうかを表すフラグである。 isReady: boolean - Whether the router fields are updated client-side and ready for use. Should only be used inside of useEffect methods and not for conditionally rendering on the server. ルータの各項目がクライアント側で更新されてから初めて使えるようになる useEffect(やcomponentDidMount)でしか使わない。サーバ側レンダリングでそれの利用を避けるべき。 参照の仕方 import { useRouter } from 'next/route

    next/routerのisReadyフラグ - Qiita
    J138
    J138 2023/04/18
  • 1