收藏
回答

关于getstoreage问题,为什么显示顺序跟预想的不一致呢?

Page({

  data:{          w_name:'匿名',  },  

  onShow:function(){   //从本地获得登录者名字   

    var that = this    

    wx.getStorage({

      key: 'userName',

      success (res) {

         console.log('ceshi !'),

        console.log(res.data),

         that.data.w_name = res.data

      }    

    })

    console.log(that.data.w_name)

    }

不是应该先执行success中的内容吗?然后再执行wx.getstorage后的内容?

  }

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

4 个回答

登录 后发表内容