回调函数嵌套用时出现问题?
const self = this;
self.countdaynum(str, function () {
console.log(self.data.appX)
//以下回调函数单独用正确,嵌套在上一回调函中就出现问题????
const that = this;
that.counttimenum(str, function () {
console.log(that.data.appY)
})
})