清除缓存

axml

清除缓存

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: '清除成功',
        });
      }
    });
  },

你可能感兴趣的:(清除缓存)