We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey ! I wanted to get the error response body in json, but the response.json() method give me the following error :
response.json()
error: Body already used
I'm using onResponseError to display a log on error
const response = await ofetch(documentUrl, { method: "POST", body: body, async onResponseError({ request, response, options }) { // Log error console.log( "[fetch response error]", request, response.status, response.body, response.json() // Error here ) }, })
The text was updated successfully, but these errors were encountered:
Ah, I think it might be in response._data.
response._data
Sorry, something went wrong.
No branches or pull requests
Hey ! I wanted to get the error response body in json, but the
response.json()
method give me the following error :I'm using onResponseError to display a log on error
The text was updated successfully, but these errors were encountered: