我正在学习 React,但我仍然认为自己是一个初学者。我的目标是单击子组件上的按钮,以便我可以重新渲染父组件。这是我的代码。
父组件
import React, { Component } from 'react';
import Activity from './Components/Activity'
class App extends Component {
state = {
activity: ''
}
handleClick = () => {
// I have read that forceUpdate is discouraged but this is just an example
this.forceUpdate()
}
async componentDidMount() {
const url = 'http://www.boredapi.com/api/activity/'
const response = await fetch(url);
const data = await response.json();
this.setState({
activity: data.activity
})
}
render() {
return (
<div>
<Activity act={this.state.activity} click={this.handleClick}/>
</div>
);
}
}
export default App;
子组件
import React, { Component } from 'react';
class Activity extends Component {
render() {
return (
<div>
<h1>Bored? Here is something to do</h1>
<p>{this.props.act}</p>
<button onClick={this.props.click}>Something Else</button>
</div>
);
}
}
export default Activity;
正如您所看到的,我正在尝试单击一个按钮,以便我可以再次获取并在我的子组件上呈现不同的活动。我试图让我的孩子组件保持无状态,但如果保持它无状态没有意义或者完全错误,我很想知道。
心有法竹
慕娘9325324
相关分类