微信小程序——缓存多条数据

微信小程序——缓存多条数据_第1张图片


查看历史记录


  {{item}}
Page({
  data: {
    history:[]
  },
  inputcon: function(e) {
    this.value = e.detail.value;
  },
  // 缓存多条数据
  test:function() {
    let arr = wx.getStorageSync("test1") || [];
    arr.unshift(this.value);
    wx.setStorageSync("test1", arr)
    
  },
  // 缓存多条数据
  history: function() {
    this.setData({
      history: wx.getStorageSync("test1")
    })
  },

 

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