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

清除缓存,退出登录

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


   

你可能感兴趣的:(微信小程序,微信小程序)