React weather appを作成しようとしています。このアプリでは都市名を入力することができ、現在の気温を表示します。 しかし、私の状態は他の都市オブジェクト(coponentDidMountメソッド - "obje"状態)に変更したくありません。React API呼び出しは状態を変更しません。
import React, { Component } from 'react';
import Api from './api.js';
class App extends Component {
constructor(props) {
super(props);
this.state = {
obje: {},
inputValue: 'Paris'
}
}
componentDidMount() {
var rootUrl = "http://api.openweathermap.org/data/2.5/weather?q=";
var city = this.state.inputValue
var key = "&appid=aa32ecd15ac774a079352bfb8586336a";
fetch(rootUrl + city + key)
.then(function(response) {
return response.json();
}).then(d => {
this.setState({obje:d})
});
}
handleChange(event) {
event.preventDefault();
this.setState({inputValue: this.refs.inputVal.value});
console.log(this.refs.inputVal.value);
}
render() {
return (
<div>
{this.state.obje.name}
<form action="" method="" onSubmit={this.handleChange.bind(this)}>
<input ref="inputVal" type="text" />
<input type="submit" />
</form>
</div>
);
}
}
export default App;
コンソールにエラーがありますか? –
エラーは発生しません – Mac