gpt4 book ai didi

javascript - fetch 包裹在react样板中的request.js中: how to handle error from json body for Spring backend

转载 作者:行者123 更新时间:2023-12-02 13:56:43 25 4
gpt4 key购买 nike

我正在尝试修改此文件

https://github.com/mxstbr/react-boilerplate/blob/master/app/utils/request.js

问题是它处理 statusText 中的 errorMessage,这不是我可以从 Spring 后台设置的内容。

我的错误消息位于响应正文中。

这就是我到目前为止解决这个问题的方法

我尝试了许多不同的方法来使其工作,但我总是破坏此提交中实现的逻辑:48eecac任何帮助将不胜感激

import "whatwg-fetch";
import { fromJS } from "immutable";

/**
* Parses the JSON returned by a network request
*
* @param {object} response A response from a network request
*
* @return {object} The parsed JSON from the request
*/
function parseJSON(response) {
return response.json();
}

/**
* Checks if a network request came back fine, and throws an error if not
*
* @param {object} response A response from a network request
*
* @return {object|undefined} Returns either the response, or throws an error
*/
function checkStatus(response) {
if (response.status >= 200 && response.status < 300) {
return response;
}
return response.json().then(throwError);
}

/**
* Throw an error with the errorMessage from the response body
*
* @param errorMessage
*/
function throwError(errorMessage) {
throw new Error(errorMessage);
}

/**
* Requests a URL, returning a promise
*
* @param {string} url The URL we want to request
* @param {object} [options] The options we want to pass to "fetch"
*
* @return {object} An object containing either "data" or "error"
*/
export default function request(url, options = {}) {
return fetch(url, options)
.then(checkStatus)
.then(parseJSON)
.then((response) => (response))
.catch((err) => ({ err }));
}

最佳答案

在 react 样板中偶然发现了同样的问题。基本上它的工作方式是用来自响应的 statusText header 构造 Error,而不是响应的正文。

因此,要在不修改样板代码的情况下处理自定义错误消息,您可以直接在发送响应的服务器端点上的 statusText header 中编写自定义消息。

例如,在Express(4)中你可以这样设置:

  res.writeHead(401, 'My custom error message');

return res.send();

然后,在客户端处理该错误的地方,您可以像这样访问此自定义消息:

export function* handleError({ error }) {
console.log(error.message) // will output "My custom error message"

关于javascript - fetch 包裹在react样板中的request.js中: how to handle error from json body for Spring backend,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40648129/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com