const res = await fetch("/request-path", {
method: "POST",
headers: {
"Content-Type": "application/json",
}
}).then(function (response) {
return response.text().then(function (text) { // This line will get the msg
console.log(text) //here you can access it
});
});
2条答案
按热度按时间83qze16e1#
可以使用try/catch方法进行错误处理。
68bkxrlz2#
这是Fetch请求的示例,您可以相应地为Axios更改它