需求:
在微信小程序里面,点击“取消”字样即可退出小程序,返回微信聊天界面
效果:
步骤:
方法一:
直接使用uni-app的组件——navigator,修改参数open-type="exit" target="miniProgram"即可
(直接退出,不需要执行其他操作)
<navigator open-type="exit" target="miniProgram" >取消</navigator>
方法二:
使用微信小程序API--wx.exitMiniProgram
(适用于退出时,清除缓存等操作)
设置点击事件:
<view @click="exitApplet()">取消</view>
设置api(在success函数里面可以写入一些退出小程序时,要执行的操作)文章来源:https://www.toymoban.com/news/detail-529210.html
//退出小程序
exitApplet() {
wx.exitMiniProgram({
success: function () {
postCancelLogin({unique_id:this.unique_id}).then((res => {
uni.removeStorageSync('iv'); //清除缓存
uni.removeStorageSync('encryptedData');
}))
}
})
}
文章来源地址https://www.toymoban.com/news/detail-529210.html
到了这里,关于#微信小程序# 在小程序里面退出退出小程序(navigator以及API--wx.exitMiniProgram)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!