Javascript 反应不会立即改变状态

Javascript 反应不会立即改变状态,javascript,reactjs,state,Javascript,Reactjs,State,你好。我有以下问题:我有一个类计算器,它会在单击按钮时更改FirstOperator参数的状态。但状态不会立即更改,它只在我单击另一个按钮时更改第一个操作数的状态。结果是1个操作中出现延迟:我单击了1-指示器未更改,我单击了2-指示器更改为1,我单击了5-指示器更改为12,以此类推。 以下是我的部分代码: var Indicator = React.createClass({ render: function () { return (

你好。我有以下问题:我有一个类计算器,它会在单击按钮时更改FirstOperator参数的状态。但状态不会立即更改,它只在我单击另一个按钮时更改第一个操作数的状态。结果是1个操作中出现延迟:我单击了1-指示器未更改,我单击了2-指示器更改为1,我单击了5-指示器更改为12,以此类推。 以下是我的部分代码:

    var Indicator = React.createClass({

        render: function () {
            return (
                    <div className="calc-indicator">
                        <input id="indicator" type="text" maxLength="20" size="20" value={this.props.value}/>
                    </div>
            );
        }
    });


    var Button = React.createClass({

        render: function () {
            return (
                    <div className="nav-button">
                        <button type="button" id={this.props.identifier} onClick={this.props.clickHandler}>
                            {this.props.digit}
                        </button>
                    </div>
            );
        }
    });


    var Calculator = React.createClass({

        setFirstOperand: function (value) {
            this.setState(
                    {
                        firstOperand: value
                    }
            );
            if (isDebug) {
                console.log("First operand state is set to " + value + ".");
            }
        },

        setSecondOperand: function (value) {
            this.setState(
                    {
                        secondOperand: value
                    }
            );
        },

        changeIndicator: function (value) {
            if (isDebug) {
                console.log("///Change indicator method is working///");
                console.log("change indicator parameter is " + value);
                console.log("first operand is " + this.state.firstOperand);
                console.log("second operand is " + this.state.secondOperand);
                console.log("operation is " + this.state.operation);
            }
            if (!value) { // if value hasn't been gotten
                value = '';

                if (this.state.firstOperand) {
                    value += this.state.firstOperand;
                } else {
                    value = '0';
                }
                if (this.state.operation) {
                    value += this.state.operation;
                }
                if (this.state.secondOperand) {
                    value += this.state.secondOperand;
                }
            }
            this.setState(
                    {
                        value: value
                    }
            );
            if (isDebug) {
                console.log("indicator is changed to " + value);
                console.log("/////////////////////////////////////");
            }
        },

        getInitialState: function () {
            calculator = this;
            return {
                firstOperand: null,
                secondOperand: null,
                operation: null,
                divisionByZero: false,
                value: '0'
            };
        },

        cipherClicked: function (event) {

            if (this.state.divisionByZero) {
                this.setDivisionByZero(false);
            }
            var newValue = event.target.innerHTML;
            var firstValue = this.state.firstOperand;
            var secondValue = this.state.secondOperand;
            var operation = this.state.operation;

            if (operation) {
                if (secondValue) {
                    secondValue = secondValue + newValue;
                } else {
                    secondValue = newValue;
                }
                if (isDebug) {
                    console.log("Second operand state is setting to " + secondValue + ".");
                }
                this.setSecondOperand(secondValue);
            } else {
                if (firstValue) {
                    firstValue = firstValue + newValue;
                } else {
                    if (newValue != 0) { // if indicator contains 0 and you have tried to add one 0 more
                        firstValue = newValue;
                    }
                }
                if (isDebug) {
                    console.log("First operand state is setting to " + firstValue + ".");
                }
                this.setFirstOperand(firstValue);
                setOperand(firstValue);
            }
            if (isDebug) {
                console.log("Calling changeIndicator function.");
            }

            this.changeIndicator();
        },


        render: function () {

            return (
                    <div id="calculator">
                        <table>
                            <tr>
                                <td colSpan="4">
                                    <Indicator value={this.state.value} />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <Button identifier="MC" digit="MC" clickHandler={this.memoryNavigationClicked}/>
                                </td>
                                <td>
                                    <Button identifier="MR" digit="MR" clickHandler={this.memoryNavigationClicked}/>
                                </td>
                                <td>
                                    <Button identifier="M+" digit="M+" clickHandler={this.memoryNavigationClicked}/>
                                </td>
                                <td>
                                    <Button identifier="M" digit="M" clickHandler={this.memoryNavigationClicked}/>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <Button identifier="BS" digit="BS" clickHandler={this.editNavigationClicked}/>
                                </td>
                                <td>
                                    <Button identifier="CL" digit="CL" clickHandler={this.editNavigationClicked}/>
                                </td>
                                <td>
                                    <Button identifier="C" digit="C" clickHandler={this.editNavigationClicked}/>
                                </td>
                                <td>
                                    <Button identifier="negate" digit="+-" clickHandler={this.negateClicked}/>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <Button identifier="7" digit="7" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="8" digit="8" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="9" digit="9" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="divide" digit="/" clickHandler={this.operationClicked}/>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <Button identifier="4" digit="4" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="5" digit="5" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="6" digit="6" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="multiply" digit="*" clickHandler={this.operationClicked}/>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <Button identifier="1" digit="1" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="2" digit="2" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="3" digit="3" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="minus" digit="-" clickHandler={this.operationClicked}/>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <Button identifier="0" digit="0" clickHandler={this.cipherClicked}/>
                                </td>
                                <td>
                                    <Button identifier="dot" digit="." clickHandler={this.dotClicked}/>
                                </td>
                                <td>
                                    <Button identifier="eq" digit="=" clickHandler={this.operationClicked}/>
                                </td>
                                <td>
                                    <Button identifier="plus" digit="+" clickHandler={this.operationClicked}/>
                                </td>
                            </tr>
                        </table>
                    </div>
            );
        }
    });

    React.render(<Calculator />, document.body);

</script>
</body>
</html>

根据我的React本机回答,setState可以是异步操作,而不是同步操作。这意味着对状态的更新可以批处理在一起,而不是立即完成,以获得性能提升。如果在状态真正更新后确实需要执行某些操作,则有一个回调参数:

this.setState({ searchString: event.nativeEvent.text }, function(newState) {
    console.log('Changed State');
    console.log('searchString = ' + this.state.searchString);
}.bind(this));
这也在文章中提到