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

[建议升级至1.3.29或之后的版本]1.3.26 中 Redux 的 state 复杂数据下修改时会被污染,导致页面不刷新 #4980

Closed
arvinxx opened this issue Nov 30, 2019 · 11 comments
Assignees
Labels
question Further information is requested

Comments

@arvinxx
Copy link

arvinxx commented Nov 30, 2019

问题描述

当 state 的数据结构为数组或者对象时,在 reducer 中修改后,会将 prev state 的值污染
从而导致视图页面不会刷新

复现步骤

  1. 原数据为: {x: [{up:0},{up:2}]}
  2. 在 reducer 中修改该值为 {x: [{up:1},{up:2}]}
  3. 修改前和修改后的 x 都变成了 {x: [{up:1},{up:2}]}
  4. 同时页面不会进行刷新

期望行为

在 reducer 修改前,prev state 的值不变,修改后,next state 的值改变

报错信息

系统信息

使用的是最新的 1.3.26
如果是 1.3.25 就没有这个问题

补充信息

不止我一个人遇到这个问题,交流群里的小伙伴也有遇到
image

image

如果您有功能上的建议,可以提到 FeatHub

使用上的问题,欢迎在「Taro 社区」一起交流

@taro-bot
Copy link

taro-bot bot commented Nov 30, 2019

CC @Chen-jj

@taro-bot
Copy link

taro-bot bot commented Nov 30, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@shenghanqin
Copy link
Collaborator

我也跟着关注一下,感觉我使用时数据更新好像也不够完全理想。嘻嘻

@luckyadam
Copy link
Member

https://github.com/NervJS/taro/blob/master/packages/taro-redux/src/connect/connect.js#L38
taro-redux 里是直接判断是否相等的,在 reducer 里修改复杂数据,建议 copy 一份再修改

@dreamthen
Copy link

的确是有问题的,render渲染时,部分细节有问题,用1.3.25是好的,1.3.26就是不行的

@zomem
Copy link

zomem commented Dec 3, 2019

我也被坑了,感觉react-redux好像不是这样的呀

@arvinxx
Copy link
Author

arvinxx commented Dec 4, 2019

https://github.com/NervJS/taro/blob/master/packages/taro-redux/src/connect/connect.js#L38
taro-redux 里是直接判断是否相等的,在 reducer 里修改复杂数据,建议 copy 一份再修改

@luckyadam 这个 Issue问题的核心关注点不是 taro-redux 的判断如何,我们应该如何去写。而且是 1.3.25 运行正常的情况下在 1.3.26 下出错。请开发团队寻找一下相关的 Bug 出处,并尽快修复。感谢~

以及再回过头来说 taro-redux 的判断逻辑,为何不用一下 deepEqual 的判断方法,感觉这样对对象的处理更加严谨点?

@Chen-jj
Copy link
Contributor

Chen-jj commented Dec 10, 2019

@arvinxx 提供一下完整可复现代码

@dreamthen
Copy link

@arvinxx
0892241 可以了 大佬给咱们修掉了

@Chen-jj Chen-jj added answered question Further information is requested labels Dec 12, 2019
@taro-bot
Copy link

taro-bot bot commented Dec 12, 2019

Hello~

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

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

Good luck and happy coding~

@shenghanqin shenghanqin changed the title 1.3.26 中 Redux 的 state 复杂数据下修改时会被污染,导致页面不刷新 [建议升级至1.3.29或之后的版本]1.3.26 中 Redux 的 state 复杂数据下修改时会被污染,导致页面不刷新 Dec 12, 2019
@shenghanqin
Copy link
Collaborator

你先试试最新版1.3.29,如果还有问题,你可以重新打开这个问题。

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

6 participants