我正在構建一種帶有React的時鐘,它具有在一個組件中增加或減少數字(默認爲25)的選項,而在另一個組件中它更新定時器(自我們從25開始)增加或減少數字。我有兩個組件(會話和時鐘)成功地執行自己的操作,但是我很難理解如何讓計數器(會話組件)更新時鐘組件中的計時器狀態。更具體地說,我一直玩弄this.props.minutes
無濟於事。在React組件之間共享屬性
問題:我怎樣才能在組件之間共享this.state.minutes
屬性?先謝謝你。我仍然是React的初學者。
會議:
const Session = React.createClass({
getInitialState: function() {
return {
minutes: 25,
seconds: 0
};
},
increment: function() {
this.setState({ minutes: this.state.minutes + 1 });
},
decrement: function() {
this.setState({ minutes: this.state.minutes - 1 });
},
timeToString: function(time) {
return time + ':00';
},
render: function() {
return (
<section>
<button onClick={this.increment}>+</button>
<button onClick={this.decrement}>-</button>
{this.state.minutes}
<Clock/>
</section>
);
}
});
module.exports = Session;
時鐘:
const Clock = React.createClass({
getInitialState: function() {
return { currentCount: 10 };
},
startTimer: function() {
var intervalId = setInterval(this.timer, 1000);
this.setState({ intervalId: intervalId });
},
pauseTimer: function() {
clearInterval(this.state.intervalId);
this.setState({ intervalId: this.state.currentCount });
},
timer: function() {
var newCount = this.state.currentCount - 1;
if (newCount >= 0) {
this.setState({ currentCount: newCount });
} else {
clearInterval(this.state.intervalId);
}
},
render: function() {
return (
<section>
<button onClick={this.startTimer}>Start</button>
<button onClick={this.pauseTimer}>Pause</button>
{this.state.currentCount}
</section>
);
}
});
module.exports = Clock;
對於親子溝通,只需傳遞道具。 https://facebook.github.io/react/tips/communicate-between-components.html – JordanHendrix