如何在Next.js应用中在服务器端获取Cookie

本文介绍了一位开发者在使用Next.js时遇到的身份验证问题,由于Cookie在首次页面加载时未正确设置,导致服务器端渲染(SSR)页面无法进行用户认证。作者通过在Axios请求中加入Cookie信息到header解决了这一问题。
摘要由CSDN通过智能技术生成

I had this problem. My app depended on cookies for authentication, and using Next.js apparently my cookies were not set on first page initialization.

我有这个问题。 我的应用程序依赖Cookie进行身份验证,显然使用Next.js时,我的Cookie并未在首页初始化时设置。

I had this code, which was in charge of hitting a GET endpoint using Axios:

我有这段代码,它负责使用Axios命中GET端点:

Bookings.getInitialProps = async ctx => {
  const response = await axios.get('http://localhost:3000/api/bookings/list')

  return {
    bookings: response.data
  }
}

I had Passport.js on the server side endpoint, but it failed to authenticate the user on the SSR page, because it didn’t find any cookie.

我在服务器端端点上具有Passport.js,但由于未找到任何cookie,因此未能在SSR页面上对用户进行身份验证。

I had to change my code to this, adding the cookies to the headers:

我必须将代码更改为此,将cookie添加到headers

Bookings.getInitialProps = async ctx => {
  const response = await axios({
    method: 'get',
    url: 'http://localhost:3000/api/bookings/list',
    headers: ctx.req ? { cookie: ctx.req.headers.cookie } : undefined
  })

  return {
    bookings: response.data
  }
}

The key to making cookies available in the backend was adding:

在后端使cookie可用的关键是添加:

headers: ctx.req ? { cookie: ctx.req.headers.cookie } : undefined

to the Axios configuration.

到Axios配置。

翻译自: https://flaviocopes.com/nextjs-cookies/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值