gpt4 book ai didi

javascript - 从另一个组件调用 React 组件的特定实例的方法

转载 作者:行者123 更新时间:2023-11-30 20:14:55 25 4
gpt4 key购买 nike

我正在尝试制作一个简单的番茄钟计时器。我需要让暂停和停止按钮起作用。我定义了一个名为“定时器”的单独组件并添加了两个按钮:“暂停”和“停止”,这显然必须影响定时器的状态。

如何在按下相应的 Button 时调用 Timer 的停止和暂停方法?

我知道我可以通过简单地将按钮包含在 Timer 类中来做到这一点,但我想学习如何在未来实现类似的东西,并且我希望保持 Timer 的计数器部分独立。

代码如下:

import React from 'react'
import { Text, View, Button, StyleSheet } from 'react-native';
import { Constants } from 'expo';

class Timer extends React.Component{
constructor (props){
super(props)
this.state = {
minutes: props.minutes,
seconds: props.seconds,
count: 0,
}
}

dec = () => {
this.setState(previousState => {
if (previousState.seconds==0){
return {
minutes: previousState.minutes-1,
seconds: 59,
count: previousState.count+1,
}
}
else{
return{
minutes: previousState.minutes,
seconds: previousState.seconds-1,
count: previousState.count+1,
}
}
});
}
componentDidMount (){
setInterval(this.dec,1000);
}

render (){
return(
<View style = {{flexDirection: 'row'}}>
<Text style = {styles.timerCount}> {this.state.minutes}</Text>
<Text style = {styles.timerCount}>:</Text>
<Text style = {styles.timerCount}> {this.state.seconds} </Text>
</View>
)
}
stop (){
console.log('stop')
}

pause (){
console.log('pause')
}
}

export default class App extends React.Component {
stop (){
console.log('stop')
}
render() {
return(
<View style={styles.container}>
<Timer style = {styles.timer} minutes={25} seconds = {0}/>
<View style = {styles.buttonContainer}>
<Button title = 'Pause' style = {styles.timerButton} color = 'white' onPress = {()=>{console.log("call the timer's pause method here")}}/>
<Button title = 'Stop' style = {styles.timerButton} color = 'white' onPress = {()=>{console.log("call the timer's stop method here")}}/>
</View>
</View>
);
}
}

const styles = StyleSheet.create({
buttonContainer: {
flexDirection: 'row',
},

container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
paddingTop: 50,
backgroundColor: '#EC3D40',
},

timer: {
backgroundColor: '#EC3D40',
paddingTop: 50,
},

timerCount: {
fontSize: 48,
color: 'white',
backgroundColor: '#EC3D40',
paddingTop: 10,
paddingBottom: 10,
},

timerButton:{
borderColor: 'white',
backgroundColor: 'transparent',
}
});

最佳答案

实际上你可以使用 ref 来做到这一点功能。

您可以创建一个 ref 并将其分配给您的计时器组件。然后就可以调用这个组件的方法了。

export default class App extends React.Component {
timerRef = React.createRef();

render() {
return(
<View style={styles.container}>
<Timer style = {styles.timer} minutes={25} seconds = {0} ref={this.timerRef}/>
<View style = {styles.buttonContainer}>
<Button title = 'Pause' style = {styles.timerButton} color = 'white' onPress = {()=>{console.log("call the timer's pause method here"); this.timerRef.current.pause();}}/>
<Button title = 'Stop' style = {styles.timerButton} color = 'white' onPress = {()=>{console.log("call the timer's stop method here"); this.timerRef.current.stop();}}/>
</View>
</View>
);
}
}

但这看起来不像是一种响应式(Reactive)的做事方式。

关于javascript - 从另一个组件调用 React 组件的特定实例的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52019838/

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