我可以根据响应状态在 axios post 中抛出错误吗

Can I throw error in axios post based on response status

是否可以在 axios 的 .then() 块中故意抛出错误?例如,如果 api 以 204 状态代码响应,我可以抛出错误并 运行 catch 块吗?

例如:

axios.post('link-to-my-post-service', {
        json-input
    }).then(response => {
        if (response.status === 200) {
            //proceed...
        }
        else {
            // throw error and go to catch block
        }
    }).catch(error => {
        //run this code always when status!==200
    });

编辑

我试过了,但没用:

var instance = axios.create({
            validateStatus: function (status)
            {
                return status == 200;
            }
        });
axios.post('link-to-my-post-service', {input: myInput}, instance)
    .then(response => {
            dispatch({
                    type: "FETCH_SUCCESS",
                    payload: response.data
                });
        }).catch(error => {
            dispatch({
                type: "FETCH_FAILED",
                payload: error
            });
        });

当我得到状态代码 204 时,执行的块仍然是 then() 块而不是 catch 块。

编辑 2

根据 Ilario 的建议,正确答案是:

var instance = axios.create({
            validateStatus: function (status)
            {
                return status == 200;
            }
        });
instance.post('link-to-my-post-service', {input: myInput})
    .then(response => {
            dispatch({
                    type: "FETCH_SUCCESS",
                    payload: response.data
                });
        }).catch(error => {
            dispatch({
                type: "FETCH_FAILED",
                payload: error
            });
        });

现在,当状态代码不等于 200 时,将执行 catch 块代码。

如果您查看 GitHub Project Page,您会注意到以下选项说明。

/* `validateStatus` defines whether to resolve or reject the promise for a given
 * HTTP response status code. If `validateStatus` returns `true` (or is set to `null`
 * or `undefined`), the promise will be resolved; otherwise, the promise will be
 */ rejected.
validateStatus: function (status) {

    return status >= 200 && status < 300; // default
},

因此您可以使用自己的配置创建一个实例。

var instance = axios.create({

   validateStatus: function (status) {

        return status == 200;
    },
});

您也可以设置默认值。这些将应用于每个请求。

axios.defaults.validateStatus = () => {

    return status == 200;
};

更新 1

要仅针对特定操作设置配置,您可以将 "config" 替换为您想要的值或方法。

axios.post(url[, data[, config]])

更新 2

I tried this, but it didn't work.

您不能将实例传递给 axios.post()。您必须在新实例上调用 post。

var instance = axios.create({

    validateStatus: function (status) {
        return status == 200;
    }
});

instance.post('url', data, config);

非常感谢您的建议。答案比我想象的要简单。

我不想设置任何默认选项来更改 axios 的行为,所以我只是尝试了类似下面的代码,并且成功了。每次执行代码throw new Error("Error");,之后执行catch块代码

axios.post('link-to-my-post-service', {
        json-input
    }).then(response => {
        if (response.status === 200) {
            //proceed...
        }
        else {
            // throw error and go to catch block
            throw new Error("Error");
        }
    }).catch(error => {
        //when throw "Error" is executed it runs the catch block code
        console.log(error)
    });