gpt4 book ai didi

javascript - React - 如何根据状态(状态变化)调节函数的执行?

转载 作者:行者123 更新时间:2023-11-30 09:32:28 24 4
gpt4 key购买 nike

我有一个按钮。如果您单击它,文本会更改(由于 setState({}))。我想(仅当)单击按钮并且文本更改以弹出模态组件。模态弹出功能再次改变状态。模式也应该在更改后 1-3 秒弹出。我尝试使用 timeout(function...) 但这没有用。调用 2 个函数仅适用于文本更改,但不适用于模式弹出窗口。任何帮助都会很棒!

    class App extends React.Component {
constructor(props) {
super(props)
this.state = {
display: false,
modal: false
}
this.onClick = this.onClick.bind(this);
}
change() {
this.setState({
display: !this.state.display
})
};
toggle() {
if (this.state.modal == true) {
this.setState({
modal: !this.state.modal
})
}
};

onClick() {
this.change()
this.toggle()

}
render() {
if (this.state.display) {
return <a onClick={() => { change(); toggle();}}><p>Hello</p> </a>
<Modal onClick={this.onClick} status={this.state.modal}/>

} else {
return <a onClick={this.onClick}> <p>Bye</p></a>
}
}
}

洞察我的模态组件:

....
return(
<div className="modal" data-status={this.props.status}>
....

最佳答案

如果所有这些逻辑都必须存在于组件内部,检查状态变化的一个地方是 componentDidUpdate()生命周期函数。如果我正确理解您的意图,代码可能如下所示:

class App extends React.Component {
constructor(props) {
super(props)
this.state = {
display: false,
modal: false
}

this.toggleDisplay = function(){
this.setState({
display: !this.state.display
});
}.bind( this );

this.showModal = function(){
this.setState( { modal: true } );
}.bind( this );

this.hideModal = function(){
this.setState( { modal: false } );
}.bind( this );
}

componentDidUpdate( prevProps, prevState ){
// if toggled to display
if( !prevState.display && this.state.display ){
if( !this.state.modal ){
setTimeout( this.showModal, 3000 ); //delay 3 seconds
}
}

// if toggled to not display
else if( prevState.display && !this.state.display ){
if( this.state.modal ){
this.hideModal(); //assuming you don't want to delay hide
}
}
}

render() {
const msg = this.state.display ? 'Hello' : 'Bye',
modal = this.state.modal ? (
<Modal onClick={this.toggleDisplay} status={this.state.modal}/>
) : null;

return (
<div>
<a onClick={this.toggleDisplay}}><p>{msg}</p></a>
{modal}
</div>
);
}
}

据我所知,如果在计时器执行之前发生状态更改,则很容易出错,但我会将该问题作为练习留给您。

关于javascript - React - 如何根据状态(状态变化)调节函数的执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45471504/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com