收藏
回答

【bug】自定义组件的pageLifeTimes在部分iphone上无法触发

框架类型 问题类型 终端类型 微信版本 基础库版本
小程序 Bug 客户端 6.6.7 2.1.3

复现流程



写一个自定义组件ComponentA

写一个页面PageA

PageA中引入组件ComponentA


// app.json
{
    usingComponents: {
       'component-a''../component/ComponentA'
    }
}
// pageA.wxml
<view>
    <component-a/>
</view>
// componentA.js
Components({
   pageLifeTimes: {
      show() {
          console.log('show');
      }
   }
})

期待结果



在pageA onShow的时候,所有机型都应当在控制台打印出'show'.


实际结果


在部分ios机型,并未触发组件的pageLifeTimes的show方法。


复现机型


System: iphone, ios 11.1, WeChat 6.6.7 WeChatLib: 2.1.3 (2018.7.9 22:47:33)


回答关注问题邀请回答
收藏

1 个回答

  • 是小白啊
    是小白啊
    2018-10-17

    提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2018-10-17
    有用
    回复
登录 后发表内容