TypeError:无法读取未定义反应的属性“setState”
2020-05-21
188
为什么 onMapClicked 可以工作,但 onGpsClicked 不工作 this.setState 显示错误 TypeError:无法读取未定义反应的属性“setState”......................................................................................................................................................................
import React from "react";
import { Map, Marker, GoogleApiWrapper } from "google-maps-react";
import GpsFixedRoundedIcon from "@material-ui/icons/GpsFixedRounded";
import Button from "@material-ui/core/Button";
export class SimpleMap extends React.Component {
constructor(props) {
super(props);
this.state = {
lat: this.props.lat,
lng: this.props.lng,
markers: [
{
position: { lat: this.props.lat, lng: this.props.lng },
},
],
};
this.onMapClicked = this.onMapClicked.bind(this);
this.onGpsClicked = this.onGpsClicked.bind(this);
}
onMapClicked(t, map, coord) {
if (this.props.activeStep === 1 || this.props.disable === false) {
const { latLng } = coord;
const lat = latLng.lat();
const lng = latLng.lng();
this.setState((previousState) => {
return {
markers: [
{
position: { lat, lng },
},
],
};
});
this.props.onChange(lat, lng);
}
}
onGpsClicked() {
navigator.geolocation.getCurrentPosition(function (position) {
this.setState({
lat: position.coords.latitude,
lng: position.coords.longitude,
});
});
}
1个回答
navigator.geolocation.getCurrentPosition(function (position) {
this.setState({
lat: position.coords.latitude,
lng: position.coords.longitude,
});
});
React 无法理解此处的
this
,因为它指的是函数作用域,而不是 React 作用域。您可以将语法更改为使用词法作用域/this 的胖箭头函数
navigator.geolocation.getCurrentPosition( (position) => {
this.setState({
lat: position.coords.latitude,
lng: position.coords.longitude,
});
});
Jake Lam
2020-05-21