- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
我正在尝试将我的axios请求转换为try catch块,有人能帮忙吗?
我的代码:
const cancelSub = (subscriptionId) => {
axios
.post("http://localhost:4242/cancelSub", { subscriptionId })
.then((res) => {
console.log(res);
})
.catch((err) => {
toast.success("this worked");
console.log(err);
});
};
1条答案
按热度按时间xxls0lw81#