我在.then方法中使用;;的console.log调用上有以下axios请求,其中包含解析错误:
这是我的要求:
axios.post('/reservations', {
name:'omar jandali',
email:'omar@omnacore.com',
phone:'9515343666'
})
.then((res) => {
console.log('response' + JSON.stringify(res.data);
})
.catch((err) => {
console.log("Create reservation error: " + err);
})
我不知道为什么会这样以及如何解决它。
答案 0 :(得分:0)
您缺少console.log
的右括号:
.then((res) => {
console.log('response' + JSON.stringify(res.data));
})