美文网首页
清除缓存

清除缓存

作者: 南崽 | 来源:发表于2020-09-11 15:54 被阅读0次

axml

<view onTap="clearStorage">清除缓存</view>

js

clearStorage: function () {
    var that = this;
    that.setData({
      loading: true,
      disabled: true
    });
    // that.update();
    my.clearStorage({
      success: function () {
        that.setData({
          loading: false,
          disabled: false,
          // toast1Hidden:false
        });
        // that.update();
        console.log("成功");
        my.alert({
          title: '清除成功',
        });
      }
    });
  },

相关文章

网友评论

      本文标题:清除缓存

      本文链接:https://www.haomeiwen.com/subject/cshbektx.html