- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我不知道这是已知问题还是预期功能,但我发现了一个有趣的问题。
所以我们都知道,如果我们想在 React 中渲染一个响应式值,我们必须将值放在状态中并使用 setState:
constructor() {
super();
this.state = { counter: 0 }
this.incrementButtonListener = (e) => {
e.preventDefault();
this.setState(prevState => ({ counter: prevState.counter + 1 }));
};
}
render() {
return (
<div>
<h1>{this.state.counter}</h1>
// When clicked, counter increments by 1 and re-renders
<button onChange={this.incrementButtonListener}>Increment</button>
</div>
)
}
但是如果我们将 counter
作为字段属性,render() 只会在创建组件时捕获 counter
的快照,甚至当 counter
递增,结果不会在 render() 中响应式(Reactive)显示:
constructor() {
super();
this.counter = 0;
this.incrementButtonListener = (e) => {
e.preventDefault();
this.counter++;
};
}
render() {
return (
<div>
<h1>{this.counter}</h1>
// When clicked, counter increments by 1 but the difference is NOT rendered
<button onChange={this.incrementButtonListener}>Increment</button>
</div>
)
}
对吧?基本的东西。
但是,当我尝试摆弄这段代码时,发生了一件有趣的事情。我们将柜台作为现场属性(property),其他一切都完好无损。唯一的区别是,在 incrementButtonListener
中,我将在 someStateProperty
上添加一个 setState
:
constructor() {
super();
this.counter = 0;
this.incrementButtonListener = (e) => {
e.preventDefault();
this.counter++;
/*-------------------------------ADD THIS*/
this.setState({});
// You have to pass an object, even if it's empty. this.setState() won't work.
/*-----------------------------------------*/
};
}
render() {
return (
<div>
<h1>{this.counter}</h1>
// Surprise surprise, now this.counter will update as if it was in the state!
<button onChange={this.incrementButtonListener}>Increment</button>
</div>
)
}
这一次,this.counter 更新就好像它处于状态!
所以我的假设是,每次调用 setState 时(即使使用一个空对象作为参数),render() 都会再次运行并且 this.counter
将被重新计算并因此递增。当然,它不会像国家属性(property)那样具有 100% 的 react 性。但是,在这个用例中,this.counter
唯一会改变的时间是当我点击 Increment
按钮时。因此,如果我在监听器中放置一个 setState,它就会像 this.counter
处于该状态一样工作。
现在,我不确定这是一个可接受的行为还是一个意外的黑客行为,以及我是否应该使用它。谁能帮我详细说明一下?
这是一个fiddle如果你想看到行动中的行为。您可以注释掉第 7 行中的 this.setState({})
位以查看差异。
最佳答案
因为你没有拦截状态的变化,它会导致重新渲染,这反过来又会导致使用你增加的实例属性。这是设计使然。对 React 状态的任何更改都会导致组件重新呈现,除非您使用生命周期 Hook 来控制是否应该发生这种情况。
参见 https://reactjs.org/docs/react-component.html#shouldcomponentupdate
关于javascript - setState 意外更新非状态属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51770874/
我可以在传递给 this.setState() 的回调定义中显式调用 this.setState() 吗? this.setState( { openA:true }, () => {
我有一个从 api 获取数据的场景。在这种情况下,每当我从商店获取新值时,我的 componentWillReceiveProps() 就会被触发。 componentWillReceiveProps
在这个 componentDidUpdate 方法中,在执行 setState 将引号设置为从 fetch 返回的内容后,我必须使用回调再次执行 setState 以将 randomQuoteInde
正如 another question 中向我指出的那样,如果我在 setState、randomQuoteIndex() 中有一个不带参数的函数调用,并且该函数使用该 setState 中设置的状态
问题:当我使用 this.setState 并在回调中输出状态时,它根本不会改变,但是当我将 setstate 嵌套在 setstate 中时,它就会正常工作。 例子:这行不通- this.setSt
这个问题在这里已经有了答案: Why does setState take a closure? (2 个答案) 关闭 4 年前。 我对这两者的区别还是有点迷惑 isBusy = false;
当我使用 setState () 文本出现在调试控制台中.. setState() callback argument returned a Future. The setState() method
这个问题已经有答案了: Are 'Arrow Functions' and 'Functions' equivalent / interchangeable? (4 个回答) React - unca
之间的区别 - this.setState({value: 'xyz', name: 'john', color: 'orange'}) 对比 setValue('xyz'); setName('jo
之间的区别 - this.setState({value: 'xyz', name: 'john', color: 'orange'}) 对比 setValue('xyz'); setName('jo
我在运行代码时收到以下警告: Line 48: Do not mutate state directly. Use setState() react/no-direct-mutation-state
我是 React 的新手,我注意到我们使用 this.setState() 而不是 super.setState() 请我清楚地解释为什么我们用它来调用父类(super class)方法??示例: c
我一生都无法在我的 react 组件中传递这个 TypeError 。我已阅读所有相关主题并实现了几乎所有建议的修复,但均无济于事。 import React, { Component } from
我知道这可能是一个 JavaScript 问题而不是 React 问题,但我无法理解 React setState 的上述签名。 函数参数列表中的方括号和逗号有什么作用? 我知道如何将它与更新程序一起
是否可以在this.setState的回调中调用this.setState? 我正在制作一个 Roguelike Dungeon 并有一个设置,其中在 this.setState 的回调中使用了一个辅
我正在使用 react-navigation 进行路由。在一个组件上,我尝试设置 navigationOptions 以显示汉堡包按钮以打开和关闭侧边栏(抽屉)。所以 onPress 我试图为我的侧边
在之前的 React 版本中,我们可以在状态更改后执行代码,方法如下: setState( prevState => {myval: !prevState.myval}, () => { co
有一个 react 问卷组件,它将选定的答案添加到 this.state = {answer: []} 中,效果很好。同时,当用户更新答案时,它会添加为另一个对象。当questionID相同时,是否有
我正在使用 WebSocket 与我的服务器进行通信,并在我的 handleSubmit() 函数上输入一些值,并在此基础上与服务器进行通信并将我的状态更新为数据从 ws 收到。所以,第一次,一切都工
componentDidMount(prevProps, prevState, prevContext) { let [audioNode, songLen] = [this.refs.aud
我是一名优秀的程序员,十分优秀!