我面临next.js的问题
当我向提出要求时,我无法获得Cookie async static getInitialProps
。我得到undefined
但是,当我将其放入componentWillMount
时没有问题。不幸的是,为时已晚,因为我需要在调用组件之前获取cookie信息。所以我需要把它拿进去getInitialProps
在这里,我已经尝试过但没有成功的事情:
static async getInitialProps () {
const res = await axios.get('http://mybackend/getCookie');
return {data : res.data}
}
//res.data = undefined
有什么建议吗?
如果使用isomorphic-fetch api,并且路由需要身份验证,则在服务器端渲染(即首页加载)时,这将发送客户端cookie。