web-interview icon indicating copy to clipboard operation
web-interview copied to clipboard

[微信小程序] 9、怎么解决小程序的异步请求问题?

Open qiilee opened this issue 5 years ago • 0 comments

在回调函数中调用下一个组件的函数:

app.js

  success: function (info) {
    that.apirtnCallback(info)
  }

index.js

onLoad: function() {
	app.apirtnCallback = res => {
		console.log(res)
	}
}

qiilee avatar Jul 09 '20 04:07 qiilee