1.确保服务器端返回的是JSON格式的数据而不是HTML代码。 2.检查客户端代码中是否正确设置了请求内容类型,如下所示:
axios.post('/url', data, {
headers: {
'Content-Type': 'application/json;charset=UTF-8'
}
})
3.尝试将响应转换为JSON数据,如下所示:
axios.post('/url', data)
.then(response => {
const jsonData = JSON.parse(response.data);
console.log(jsonData);
})
.catch(error => {
console.log(error);
});