admin管理员组

文章数量:1516870

微信小程序:清除缓存,退出登录

清除缓存,退出登录

js

Page({
//清除缓存,退出登录clear: function () {wx.clearStorageSync(); //清除缓存wx.showToast({title: '退出登录成功',icon: 'none',duration: 2000,success: function () {setTimeout(function () {//跳转到首页,强制重启wx.reLaunch({url: '/pages/index/index',})}, 2000);}})},
})

wxml

<view><button bindtap="clear">退出登录</button>
</view>

本文标签: 微信小程序清除缓存,退出登录