小程序清除缓存功能如何实现

家住魔仙堡 提交于 2020-04-03 22:07:14

小程序清除缓存功能如何实现

 

Wxml:

<button type="primary" class="clear" bindtap="clearStorage" loading="{{loading}}" disabled="{{disabled}}">清空缓存</button>

Js:

clearStorage: function(){

        var that = this;

        that.setData({

            loading:true,

            disabled:true

        });

        that.update();

        wx.clearStorage({

            success:function(){

                that.setData({

                    loading:false,

                    disabled:false,

                    toast1Hidden:false

                });

                that.update();

            }

        });

    },

文章来源:刘俊涛的博客

欢迎关注,有问题一起学习欢迎留言、评论。

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!