列出和迭代props变量中的变量键和值的最简单方法是什么?
我不能使用PureComponent
,而应该检查componentWillReceiveProps(nextProps)
和shouldComponentUpdate(nextProps, nextState)
函数中的变量。
谢谢!
答案 0 :(得分:2)
您可以在其上进行映射,例如
for (let key in nextProps) {
const value = nextProps[key]
}
答案 1 :(得分:0)
您可以使用Object.keys(pros)
轻松地遍历任何对象键,这将返回对象键的数组。然后,您可以迭代键值