收藏
回答

回调函数嵌套用时出现问题?

   const self = this;

   self.countdaynum(str, function () {

        console.log(self.data.appX)

     //以下回调函数单独用正确,嵌套在上一回调函中就出现问题????

     const that = this;

     that.counttimenum(str, function () {

        console.log(that.data.appY)

   })

 })

回答关注问题邀请回答
收藏

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2020-03-22

    多余的步骤,没有理解 this作用域,用self就行了

    2020-03-22
    有用 1
    回复 1
    • 郭松
      郭松
      2020-03-22
      谢谢,也找到解决办法了,不用嵌套也行。
      2020-03-22
      回复
登录 后发表内容
问题标签