1.使用url带参数传递数据
代码实现:
toSomeone: function (event) {wx.navigateTo({
url: 'some/some?id=' + event.target.id,
})
}
获取传递来的数据
onLoad: function (options) {console.log(options)
},
2.使用组件模板 template传递参数
<template is="good" data="{{data}}"></template>
3.使用缓存传递参数
//缓存数据wx.setStorage({
key: 'userInfo',
data: res.userInfo
})
getUsersInfo: function () {
//读取缓存登录
wx.getStorage({
key: 'userInfo',
success: function (res) {
this.userInfo = res.userInfo;
}
})
}