Replies: 1 comment
-
I think you will need to create an issue for this or post somewhere like Stack Overflow. See: #29935 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I use fetch to rsend a post, the config as below:
`
fetch("url",
{
mode: 'cors',
credentials: 'include',
method: 'POST',
})
Without
credentials: 'include'
, I can send the request successfully, but withcredentials: 'include'
, I can not send it. I follow some blog and other solution, but they can not solve this, I set the response header in the bakend:'
Beta Was this translation helpful? Give feedback.
All reactions