-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
使用 Hooks,当一个数组filter之后拿去渲染,会导致原数组改变 #5019
Comments
CC @Chen-jj |
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
发现要这样写,彻底隔绝原数组和新数组才不会影响,但是单纯filter不应该会动原数据才对呀 const list = [];
deviceList.forEach((item) => {
if (!roomId || item.RoomId === roomId) {
// 这样都不行
// list.push(item);
list.push({ ...item });
}
}); |
啊,我理解有误 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
问题描述
(Taro版本1.3.26,使用 Hooks)当一个数组filter过后拿去渲染,会导致原始数组改变(业务代码没有任何写行为)
复现步骤
大概就是,有一个数组,需要根据筛选项过滤,但是切换几次过滤条件后原始数组会改变。
期望行为
当然是不要改变原数组啊
报错信息
系统信息
👽 Taro v1.3.26
Taro CLI 1.3.26 environment info:
System:
OS: macOS 10.14
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 8.9.3 - /usr/local/bin/node
Yarn: 1.9.4 - /usr/local/bin/yarn
npm: 5.5.1 - /usr/local/bin/npm
npmPackages:
@tarojs/async-await: ^1.3.26 => 1.3.26
@tarojs/components: ^1.3.26 => 1.3.26
@tarojs/plugin-babel: ^1.3.26 => 1.3.26
@tarojs/plugin-csso: ^1.3.26 => 1.3.26
@tarojs/plugin-less: ^1.3.26 => 1.3.26
@tarojs/plugin-uglifyjs: ^1.3.26 => 1.3.26
@tarojs/redux: ^1.3.26 => 1.3.26
@tarojs/router: ^1.3.26 => 1.3.26
@tarojs/taro: ^1.3.26 => 1.3.26
@tarojs/taro-weapp: ^1.3.26 => 1.3.26
@tarojs/webpack-runner: ^1.3.26 => 1.3.26
eslint-config-taro: ^1.3.26 => 1.3.26
eslint-plugin-taro: ^1.3.26 => 1.3.26
nerv-devtools: ^1.5.0 => 1.5.1
nervjs: ^1.5.0 => 1.5.1
stylelint-config-taro-rn: ^1.3.26 => 1.3.26
stylelint-taro-rn: ^1.3.26 => 1.3.26
npmGlobalPackages:
typescript: 1.8.10
补充信息
The text was updated successfully, but these errors were encountered: