web-interview
web-interview copied to clipboard
[微信小程序] 9、怎么解决小程序的异步请求问题?
在回调函数中调用下一个组件的函数:
app.js
success: function (info) {
that.apirtnCallback(info)
}
index.js
onLoad: function() {
app.apirtnCallback = res => {
console.log(res)
}
}