小程序
註冊
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----------頁面隱藏時執行') }, })