请问使用axios可以绑定请求id吗
页面是一个tree,可以点击修改,想支持某个节点在请求修改时loading,此时也可以并行修改其他节点,当上个节点请求失败则返回错误,停止对应节点的loading。
现在发现catch中拿不到对应请求失败的节点id,不知道axios支持设置某个请求id吗,或者我该如何将id传入catch中
if (this.moduleNodeQuery.currentId > 0) {
this.requestEditing[data.id] = true
editModule(this.moduleNodeQuery).then(response => {
this.requestEditing[data.id] = false
const id = response.data.id
this.tmpNodeData[id].label = response.data.moduleName
this.tmpNodeData[id].owner = response.data.owner
this.moduleNodeQuery.currentId = -1
this.$message({
message: 'edit success',
type: 'success'
})
if (callback) {
callback()
}
}).catch(() => {
this.$message({
message: 'edit error',
type: 'error'
})
这里该如何写,Id获取不到啊
this.requestEditing[Id?] = false
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
catch 也有参数 可以选择