作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
设想
我有一个组件可以根据用户输入以不同的顺序重新渲染子组件。这些子组件有状态。
问题
当顺序改变时,来自一个子组件的状态会在另一个子组件中结束。举个例子,假设在第一次渲染时,我有子组件 A 和 B,按顺序排列。在下一次渲染中,顺序更改为 B 和 A。A 中的状态现在在 B 中,反之亦然。
我做了 a simpler example in Code Sandbox来说明情况。该列表保持相同的顺序,即使它在下一次渲染中被颠倒了。
我想这与 the way that React maintains state 有关跨不同的组件,其中钩子(Hook)的顺序很重要。
React 应该能够处理这种情况吗?我的代码有问题吗?如果是这样,以不同顺序重新渲染组件的正确方法应该是什么?
最佳答案
这与 react 在其虚拟 DOM 中处理元素的方式有关。
解决方案:添加一个 key ,它将起作用。
<StatefulComponent param={"Tomato"} key={"Tomato"} />,
<StatefulComponent param={"Potato"} key={"Potato"}/>
<StatefulComponent param={"Tomato"} key={0} />,
<StatefulComponent param={"Potato"} key={1}/>
reverse()
:
<StatefulComponent param={"Potato"} key={0} />,
<StatefulComponent param={"Tomato"} key={1}/>
<div id=1>Foo</div> // Id "1" is now bound to this element
<div id=2>Bar</div>
<div id=1>Bar</div> // this will be transformed to <div id=1>Foo</div>
<div id=2>Foo</div> // this will be transformed to <div id=2>Bar</div>
关于reactjs - 如何在保持状态的同时更改组件顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62438039/
我是一名优秀的程序员,十分优秀!