编程语言
首页 > 编程语言> > WeChat applet 微信小程序(9) 页面相关事件处理函数

WeChat applet 微信小程序(9) 页面相关事件处理函数

作者:互联网

微信小程序 页面相关事件处理函数

https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html

Page({
	onPullDownRefresh(){
		//...
	}
})
Page({
	onReachBottom(){
		//...
	}
})
Page({
	onShareAppMessage(){
		//...
	}
})

在这里插入图片描述

标签:事件处理,函数,...,微信,applet,Page,页面
来源: https://blog.csdn.net/Janner668/article/details/114213527