Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getCurrentPages 方法在taro的componentWillMount生命周期中调用,获取到的页面对象中没有options这个属性 #2122

Closed
pamler opened this issue Feb 11, 2019 · 3 comments
Assignees
Labels
question Further information is requested

Comments

@pamler
Copy link
Contributor

pamler commented Feb 11, 2019

问题描述
getCurrentPages 方法在taro的componentWillMount生命周期中调用,获取到的页面对象中没有options这个属性(e.g. 存放了上一个页面带过来的参数等),而在taro的componentDidMount中可以拿的到。但是原生的微信小程序里onLoad中调用该方法的确是可以获取到的,理论上taro的componentWillMount等价于微信小程序的onLoad,所以API的返回结果建议尽量保持一致。

复现步骤
可以拿官方的taro-redux-demo举例,代码如下:
pages/index/index.js中

  goto = () => {
    Taro.navigateTo({
      url: '/pages/index2/index?sd=1'
    })
  }

pages/index2/index.js中

  componentWillMount () {
    console.log("page2 will mount: ")
    console.log(getCurrentPages().pop().options)
  }

  componentDidMount () {
    console.log("page2 did mount: ")
    console.log(getCurrentPages().pop().options)
  }

实际结果

image

系统信息
Taro v1.2.12

@taro-bot
Copy link

taro-bot bot commented Feb 11, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@pamler pamler changed the title getCurrentPages 方法在taro的componentWillMount生命周期中调用,获取到的页面对象中没有options这个属性,原生的微信小程序里onLoad中调用该方法是可以获取到的 getCurrentPages 方法在taro的componentWillMount生命周期中调用,获取到的页面对象中没有options这个属性 Feb 11, 2019
@taro-bot
Copy link

taro-bot bot commented Feb 14, 2019

CC @Chen-jj

@Chen-jj
Copy link
Contributor

Chen-jj commented Apr 10, 2019

@pamler 首先要清楚 Taro 中微信小程序的页面或组件都是由 Component 构造成的。

微信小程序启动的第一个页面,componentWillMount 对应 onLoad 没错。

但之后跳转的页面,componentWillMount 对应 attached。原因是 onLoad 触发时机在最后,不利于初始化页面。而页面的 attached 是最早触发的。

目测 attached 中拿不到页面对象的 options。但其实获取参数有很多方式,这时直接拿 this.$router.params 或者用预加载等方法都是可以拿到跳转参数的。没有必要舍近求远。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

3 participants