Behavior pageLifetimes中稳定支持load吗?
Behavior文档 组件所在页面的生命周期 https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/lifetimes.html#%E7%BB%84%E4%BB%B6%E6%89%80%E5%9C%A8%E9%A1%B5%E9%9D%A2%E7%9A%84%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F 中没有明确说明 pageLifetimes 可以包括 Page 的 onLoad 生命周期。 但在基础库3.1.5下,在Behavior的pageLifetimes中添加load方法发现可以执行,那么pageLifetimes中是否稳定支持load生命周期? const pageStoreBehavior = Behavior({
pageLifetimes: {
load() {
console.log('pageStoreBehavior onLoad');
},
},
});