2
Ana Durum Değişikliğinden Sonra Alt Bileşen Güncellenmeyen React Alt Bileşeni
Verileri çeşitli alt bileşenlerde doldurmak için güzel bir ApiWrapper bileşeni yapmaya çalışıyorum. Okuduğum her şeyden, bu işe yaramalı: https://jsfiddle.net/vinniejames/m1mesp6z/1/ class ApiWrapper extends React.Component { constructor(props) { super(props); this.state = { response: { "title": 'nothing fetched yet' } }; } componentDidMount() { this._makeApiCall(this.props.endpoint); } _makeApiCall(endpoint) { fetch(endpoint).then(function(response) { this.setState({ response: response …
111
reactjs