mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
docs: use headers.getSetCookie
This commit is contained in:
parent
fa29c35780
commit
be37ffcede
@ -468,13 +468,12 @@ Be very careful before proxying headers to an external API and just include head
|
||||
```ts [composables/fetch.ts]
|
||||
import { appendResponseHeader } from 'h3'
|
||||
import type { H3Event } from 'h3'
|
||||
import { splitSetCookieString } from 'cookie-es'
|
||||
|
||||
export const fetchWithCookie = async (event: H3Event, url: string) => {
|
||||
/* Get the response from the server endpoint */
|
||||
const res = await $fetch.raw(url)
|
||||
/* Get the cookies from the response */
|
||||
const cookies = splitSetCookieString(res.headers.get('set-cookie') || '')
|
||||
const cookies = res.headers.getSetCookie()
|
||||
/* Attach each cookie to our incoming Request */
|
||||
for (const cookie of cookies) {
|
||||
appendResponseHeader(event, 'set-cookie', cookie)
|
||||
|
Loading…
Reference in New Issue
Block a user