.then不能与axios.put一起使用

时间:2018-08-21 09:35:54

标签: vue.js vuejs2 axios

我有此代码:

axios.put(`http://localhost:3000/api/put/change/${this.$parent.tableName}`, this.changes)
    .then((r) => {
      console.log(r.status)
      console.log('In then 2')
      this.changeDone = true
    })
    .catch((err) => {
      console.log(err)
      this.callFail()
    })
    .finally(() => {
      console.log('test')
    })

我正在尝试使用.then,但没有触发。我故意在测试.catch时出错。

此写是否正确,是因为我不确定您可以像这样axios.put来使用

0 个答案:

没有答案