我的vue脚本中有这个add方法
if (this.edit === false) {
this.link.link = submitEvent.target.elements.link.value;
fetch('products', {
method: 'POST',
body: JSON.stringify(this.link),
headers: {
'content-type': 'application/json'
}
})
.then(res => res.json())
.then(res => { // this does not get executed
this.qrcode.redirect_url = "";
alert('Added');
this.fetchAll()
})
.catch(err => console.log(err.res));
}
}
当我填写表单时,请求被发送并输入数据库,但我没有得到响应。
我使用laravel作为后端,Controller中的Add方法在创建后返回200响应。
可能导致它的原因以及console.log(err)
为什么不显示任何内容?