我有此代码:
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
来使用