作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图弄清楚这种类型错误是从哪里来的,但我似乎无法查明它。也许我错过了 React 的一个重要概念。
我在 React 中有一个天气类:
class Weather extends Component {
constructor(props) {
super(props);
this.state = {
cityName: "San Francisco",
temp: null,
}
}
getWeather(city) {
// does fetch request to openweathermap.org
}
handleSubmit(event) {
event.preventDefault();
this.getWeather(this.state.cityName);
// this.state.cityName is updated as the user types
}
}
问题是每当我单击提交按钮时,我都会收到有关我的 getWeather 函数的错误消息:
TypeError: Cannot read property 'getWeather' of undefined
有什么建议吗?我尝试绑定(bind) getWeather 函数,但没有帮助。
最佳答案
您需要同时绑定(bind)getWeather
和handleSubmit
:
constructor(props) {
super(props);
this.state = {
cityName: "San Francisco",
temp: null,
}
this.getWeather = this.getWeather.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
关于javascript - react : Cannot read property 'getWeather' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46655003/
我试图弄清楚这种类型错误是从哪里来的,但我似乎无法查明它。也许我错过了 React 的一个重要概念。 我在 React 中有一个天气类: class Weather extends Component
我是一名优秀的程序员,十分优秀!