Vue请求失败但未记录错误

时间:2018-03-21 12:27:45

标签: laravel-5 vue.js

我的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)为什么不显示任何内容?

0 个答案:

没有答案