获取cookie客户端Next.js



我试图从cookies-next获取客户端getCookie上的cookie,并且我面临的问题是,在初始渲染时,next.js崩溃并出现错误Cannot read properties of undefined,但在控制台中cookie总是有一些值。

当我试图使用getServerSideProps从服务器传递cookie时,我从eslintAsync arrow function 'getServerSideProps' has no 'await' expression.得到错误,当我删除async时,我得到ts错误getServerSideProps should return promise<...>

我想这个问题和你的问题一样:如何在Next.js中的"getServerSideProps"方法中使用cookie?

ESLint表示,在一个不使用await的函数中,您不必要地将getServerSideProps标记为async,但Next.js中需要该语法,因此您可以禁用该规则。

相关内容

  • 没有找到相关文章

最新更新