微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

promise的正确写法规避回调地狱的写法

import axios from 'axios'
export default {
  mounted() {
    // this.getTodos().then((res) => {
    //   console.log('todos', res.data)
    //   this.getComments().then((res) => {
    //     console.log('comments', res.data)
    //     this.getAlbums().then((res) => {
    //       console.log('albums', res.data)
    //     })
    //   })
    // })
    // 当请求之间有依赖关系时,上面的写法会导致回调地狱,推荐下面的写法
    this.getTodos()
      .then((res) => {
        console.log('todos', res.data)
        return this.getComments()
      })
      .then((res) => {
        console.log('comments', res.data)
        return this.getAlbums()
      })
      .then((res) => {
        console.log('albums', res.data)
      })
  },
  methods: {
    getTodos() {
      return axios.get('https://jsonplaceholder.typicode.com/todos?_limit=5')
    },
    getComments() {
      return axios.get('https://jsonplaceholder.typicode.com/comments?_limit=5')
    },
    getAlbums() {
      return axios.get('https://jsonplaceholder.typicode.com/albums?_limit=5')
    }
  }
}

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐