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;
}
})
}