1:微信小程序 自定义头部导航栏 和添加下拉刷新的动画效果
全局的话在app.json "navigationStyle": "custom", 单页面的话在指定 .json文件添加 "navigationStyle": "custom"; "enablePullDownRefresh":true(下拉刷新的动画)
2 :小程序发布新版 用户如何自动触发更新到新版本
在小程序生命周期 onLaunch:中添加一下代码即可: const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
})
3 iOS转发后别人不可以再次转发此链接
加入一下代码即可: wx.showShareMenu({
withShareTicket: true // ios转发后不在能被转发
})
网友评论