如何使用 then() 将 JSON 的 Fetch 响应主体传递给 Throw Error()?

How can I pass JSON body of Fetch response to Throw Error() with then()?

编辑: 你误会了。考虑这个伪代码。这基本上是我想做的,但是这样写是行不通的。

一旦您收到带有 Fetch 的 Laravel 422 响应,response 不包含实际的 JSON 数据。您必须使用 response => response.json() 才能访问它。我放了一张 response 的图片,我还提供了使用 response => response.json() 后的输出。

不是试图将对象转换成JSON字符串。

我在 Laravel 中使用 SweetAlert2。

throw error(response => response.json())

swal({
  title: 'Are you sure you want to add this resource?',
  type: 'warning',
  showCancelButton: true,
  confirmButtonText: 'Submit',
  showLoaderOnConfirm: true,
  allowOutsideClick: () => !swal.isLoading(),
  preConfirm: () => {
    return fetch("/resource/add", {
        method: "POST",
        body: JSON.stringify(data),
        credentials: "same-origin",
        headers: new Headers({
          'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
          'Content-Type': 'application/json',
          'Accept': 'application/json'
        })
      })
      .then(response => {
        if (!response.ok) {

          // How can I return the response => response.json() as an error?
          // response.json() is undefined here when used

          // throw Error( response => response.json() ); is what I want to do
          throw Error(response.statusText);

        }
        return response;
      })
      .then(response => response.json())
      .then(res => console.log('res is', res))
      .catch(error => console.log('error is', error));
  }
})

responseresponse => response.json() 之后保存以下内容,我想传递给 error().

的就是这个 JSON
{"message":"The given data was invalid.","errors":{"name":["The name field is required."],"abbrev":["The abbrev field is required."]}}

我调用了 AJAX,如果 Laravel 的验证失败,它 returns 一个 status 422,验证错误消息在 JSON 中。但是,Fetch 不会将 422 响应计为 'error',因此我必须自己使用 throw 手动触发它。

因为我的验证消息在 JSON 响应中,即 then(response => json()) 如何将我的 response 转换为 json,然后将其传递给我的 throw error()

仅供参考,这是 console.log(response) 在使用 response => response.json() 之前的内容

像这样的东西应该可以工作:

fetch(...)
  .then((response) => {
    return response.json()
      .then((json) => {
        if (response.ok) {
          return Promise.resolve(json)
        }
        return Promise.reject(json)
      })
  })