小程序
注册
https://mp.weixin.qq.com/cgi-bin/wxhtml
登陆
开发工具
https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html微信
开发文档
https://developers.weixin.qq.com/miniprogram/dev/framework/微信开发
微信开发者工具
app.js
全局jsapp
//app.js App({ onLaunch: function () { console.log('app.js onLaunch-----------全局只执行一次') } })
index.js
页面jside
//index.js const app = getApp() console.log('index.js onPageLoad-----------即便没打开页面也会执行onPageLoad') Page({ onLoad: function () { console.log('index.js onLoad----------页面onload') }, onShow: function () { console.log('index.js onShow----------页面显示时执行') }, onReady: function () { console.log('index.js onReady----------页面渲染完毕') }, onHide: function () { console.log('index.js onHide----------页面隐藏时执行') }, })