仍然是 ES6 的新手,所以试图理解为什么下面这两个函数之间存在差异。我正在 React 中工作,并注意到在编写设置状态的非 ES6 函数时出现错误。这发生在 componentDidMount 中。
这种方式在 ES6 中工作并返回我需要的内容:
(pos) => this.setState({
lat: pos.coords.latitude,
lng: pos.coords.longitude,
})
但是,以这种方式抛出错误 - “未捕获的类型错误:this.setState 不是函数”
function(pos) {
this.setState({
lat: pos.coords.latitude,
lng: pos.coords.longitude
})
}
这些不是一回事吗?谁能解释为什么会抛出这个错误?
这是来自 react 类的代码,用于提供更多上下文:
var GeolocationExample = React.createClass({
getInitialState: function() {
return {
lat: '',
lng: '',
};
},
componentDidMount: function() {
navigator.geolocation.getCurrentPosition(
// Where I'm placing each of the above mentioned functions,
(err) => alert(err.message),
);
},
render: function() {
return (
<View>
<Text>
<Text style={styles.title}>Initial position: </Text>
{this.state.lat}
</Text>
<Text>
<Text style={styles.title}>Current position: </Text>
{this.state.lng}
</Text>
</View>
);
}
});
任何和所有的帮助表示赞赏。谢谢!