IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> Vue created() 里同步 -> 正文阅读

[JavaScript知识库]Vue created() 里同步

假如我们在Vue的勾子函数里created放了2个回调函数

 created() {
    this.initLinkGruopList()
    this.getList()
  },

 // 第一次获取链接分类列表数据
    initLinkGruopList() {
        this.urlmethod(this.url.linkManage.clasList_link, null)
          .then(res => {
            this.linkGroupData = [...res.data]
            this.rootLinkId = this.activeLinkId = res.data[0].id
            this.activeLinkName = res.data[0].name
            for (let i = 0; i < 100000; i++) {
              console.log(i)
              if (i == 100000 - 1) {
                alert('over')
              }
            }
          })
          .catch(err => {
            console.log('err', err)
          })
    },

   getList() {
      this.loading = true
      const reqPara = {
        data: {
          pageIndex: this.pagination.currentPage,
          pageSize: this.pagination.pageSize,
          clasId: this.activeLinkId
        }
      }
      //   const response = await this.getLinkGruopList()
      this.urlmethod(this.url.linkManage.list_link, reqPara)
        .then(res => {
          this.data = [...res.data.list]
          this.data.forEach(item => {
            this.linkGroupData.forEach(element => {
              if (item.clasId === element.id) {
                item.clasName = element.name
              }
            })
          })
          this.pagination.total = res.data.recordTotal
          this.loading = false
        })
        .catch(err => {
          console.log('err', err)
          this.loading = false
        })
    },

熟悉执行栈 回调函数 和异步的同学(不熟悉的可以看我前期博客,有专门讲这一块),会知道上面例子的执行顺序,先执行initLinkGruopList(),因为这个函数是用了axios异步请求,所以返回给主线程一个回调标记,第二个getList开始执行,第二个也是返回给主线程一个回调标记,这时主线程没有了任务队列,于是看这两个回调函数哪个跑的快,就先执行哪个。

问题来了,假如我只想第一个先执行,等拿到了它的结果,再执行第二个呢?

 async created() {
    await this.initLinkGruopList()
    this.getList()
  },

 // 第一次获取链接分类列表数据
    initLinkGruopList() {
      return new Promise((resolve, reject) => {
        this.urlmethod(this.url.linkManage.clasList_link, null)
          .then(res => {
            this.linkGroupData = [...res.data]
            this.rootLinkId = this.activeLinkId = res.data[0].id
            this.activeLinkName = res.data[0].name
            for (let i = 0; i < 100000; i++) {
              console.log(i)
              if (i == 100000 - 1) {
                resolve()
              }
            }
          })
          .catch(err => {
            console.log('err', err)
          })
      })
    },
    async getList() {
      this.loading = true
      const reqPara = {
        data: {
          pageIndex: this.pagination.currentPage,
          pageSize: this.pagination.pageSize,
          clasId: this.activeLinkId
        }
      }
      //   const response = await this.getLinkGruopList()
      this.urlmethod(this.url.linkManage.list_link, reqPara)
        .then(res => {
          this.data = [...res.data.list]
          this.data.forEach(item => {
            this.linkGroupData.forEach(element => {
              if (item.clasId === element.id) {
                item.clasName = element.name
              }
            })
          })
          this.pagination.total = res.data.recordTotal
          this.loading = false
        })
        .catch(err => {
          console.log('err', err)
          this.loading = false
        })

用async/await+promise就搞定啦,为了效果区别明显,我故意for里循环了100000次。

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-11 22:04:44  更:2022-03-11 22:05:47 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 9:14:38-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码