在使用wx.getStorageSync的时候,由于需要获取到许多键对应的值,这个时候一开始就一个一个的获取,最后发现wx.getStorageSync中是可以传参数的,其中index页面的内容是
<view>
<input class='input' bindtap='click'>缓存</input>
</view>
const app = getApp()
Page({
data: {
},
onLoad: function () {
},
click:function(){
wx.setStorageSync("game", "lol")
wx.navigateTo({
url: '/ceshi/ceshi',
})
}
})
然后ceshi页面的内容是:
// ceshi/ceshi.js
Page({
data: {
},
onLoad: function (options) {
var b = this.get('game')
console.log(b)
},
get:function(a){
return wx.getStorageSync(a)
}
})
其中在get函数中wx.getStorageSync中的key是从onLoad传过来的,此时需要加上return返回,这样才可以使用