我试图从cookies-next
获取客户端getCookie
上的cookie,并且我面临的问题是,在初始渲染时,next.js崩溃并出现错误Cannot read properties of undefined
,但在控制台中cookie总是有一些值。
当我试图使用getServerSideProps
从服务器传递cookie时,我从eslint
Async arrow function 'getServerSideProps' has no 'await' expression.
得到错误,当我删除async
时,我得到ts
错误getServerSideProps should return promise<...>
等
我想这个问题和你的问题一样:如何在Next.js中的"getServerSideProps"方法中使用cookie?
ESLint表示,在一个不使用await
的函数中,您不必要地将getServerSideProps
标记为async,但Next.js中需要该语法,因此您可以禁用该规则。