笔记:「饭否精选·日历」微信小程序制作记录 - 微信小程序开发中遇到的问题 - 4
// 在详情页的具体调用
Page({
/**
* 页面的初始数据
*/
data: {
statusid: null,
status: null,
entry: null
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function(option) {
let app = getApp();
let store = app.globalData.store;
store.getStatus(option.statusid, option.entry).then(status => {
this.setData({ statusid: option.statusid });
this.setData({ status: status });
})
}
})