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

Taro.navigateBack,返回页面,全局dispatch修改redux变量,componentWillReceiveProps方法不执行,导致我没有办重新重载页面数据 #1671

Closed
lambGirl opened this issue Dec 25, 2018 · 11 comments
Assignees

Comments

@lambGirl
Copy link

问题描述
[问题描述:站在其它人的角度尽可能清晰地、简洁地把问题描述清楚]
问题发生的原因: 项目中有三个页面会使用同一个变量,在任何一个页面修改,希望其他两个页面的数据被同步, 并且可以重新刷新页面的查询数据,此时,我采用的方式是用dva去dispatch处理数据,本想通过Taro.navigateBack返回数据,发现页面任何一个钩子函数都不会执行,包括render也不会重新刷新(按理说props已经改变,需要重新render),导致页面完全不会重新设置数据,目前yuche给出的解决方案:采用getCurrentPages的方式,但在h5中存在页面可刷新,倒是页面栈数据丢失。
复现步骤
[复现问题的步骤]

  1. 多页面采用全局redux,state数据
  2. 采用dva,触发dispatcher的方式修改state
  3. 全局state注入到每个页面中,props改变,我希望在componentWillReceiveProps得到改变值,重新请求数据列表,props改变,希望可以render重新拉取数据
  4. 每个页面的返回采用Taro.navigateBack的返回方式

[或者可以直接贴源代码,能贴文字就不要截图]

`
Taro.navigateBack();
//全局数据对象
this.props.dispatch({
"type":'hotellist/setHotelKeyword',
'payload':{hotelKeyword:''}
});

//主页面判断不同查询数据列表
componentWillReceiveProps(nextProps){
if(nextProps.hotellist.pageNum === 1&&this.state.scrollTop){
this.setState({
'scrollTop': 0
})
}
//根据props的值改变,做判断
if(nextProps.hotellist.hotelKeyword !== this.props.hotellist.hotelKeyword){
this.getHotelList(1);
}
}
render(){
//需要渲染
let {hotelKeyword } = this.props.hotellist
}
`
// 这里可以贴代码


**期望行为**
[这里请用简洁清晰的语言描述你期望的行为]
全局state注入到每个页面中,props改变,我希望在componentWillReceiveProps得到改变值,重新请求数据列表,props改变,希望可以render重新拉取数据


**系统信息**
> Taro v1.2 及以上版本已添加 `taro info` 命令,方便大家查看系统及依赖信息,运行该命令后将结果贴下面即可。



 - 操作系统: [e.g. Windows 10]: window 7
 - Taro 版本 [e.g. v.0.0.64]:  Taro v1.2.0-beta.15
 - Node.js 版本 [e.g. v9.0.0]  v8.11.4
 - 报错平台 [h5, weapp] h5期望

**补充信息**
[可选]
[根据你的调查研究,出现这个问题的原因可能在哪里?]
@taro-bot
Copy link

taro-bot bot commented Dec 25, 2018

欢迎提交 Issue~

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

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

Good luck and happy coding~

@yuche yuche removed the 组件化 label Dec 25, 2018
@NervJS NervJS deleted a comment from taro-bot bot Dec 25, 2018
@yuche yuche added the H5 label Dec 25, 2018
@taro-bot
Copy link

taro-bot bot commented Dec 25, 2018

CC @Littly

@hugetiny
Copy link

同样遇到这个问题

@luckyadam
Copy link
Member

升级到 1.2.1 试试

@tourze
Copy link
Contributor

tourze commented Jan 8, 2019

1.2.4中依然存在这个问题

@hugetiny
Copy link

hugetiny commented Jan 8, 2019 via email

@treesea2014
Copy link

我也有类似的问题 目前先在 需要的页面里 let {xxx}=this.context.store.getState()

@Littly
Copy link
Contributor

Littly commented Mar 25, 2019

之前版本redirectTo api 确实会导致这个问题,已经修复。最新版应该没有这个问题了,更新一下看看。

@taro-bot
Copy link

taro-bot bot commented Mar 25, 2019

Hello~

您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@Littly Littly closed this as completed Apr 11, 2019
@shengbowen
Copy link

这个问题依然存在啊,redux数据更新,当前页面更新了,但是页面返回到上一个页面后,上一个页面没有更新

@rockliuxn
Copy link

这个问题我在taro 3.2.10 也遇到了, 当前页面更新了 redux 的state,Taro.navigateBack 返回到上一页后,页面数据并没有更新,render 方法没有执行,难道只能在 componentDidShow 里面重新刷新数据吗?

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

No branches or pull requests

10 participants