Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

vue/js/react 调用封装的trycatch方法后执行接口如何拿到返回的数据

 tryCatch(method) {
      return async (...args) => {
        try {
          return await method(...args);
        } catch (error) {
          console.log('error', error)
          return false
        }
      }
    }
    
tryCatch(editUser)(editData)

可以正常执行,但是我不知道怎么拿到返回的数据,就像这样↓

const { data = [] } = await editUser(editData)
console.log('data',data)

在这里先谢谢各位大神的解答了,小弟感激不尽!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

你的答案不都是写出来了吗???

const { data = [] } = await tryCatch(editUser)(editData)
console.log('data',data)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...