我想用箭头功能使用这个功能:
getGeolocation = () => {
const options = {
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0,
};
const success = pos => {
const { latitude, longitude } = pos.coords;
this.setState({
location: {
lat: latitude,
lng: longitude,
},
});
};
function error(err) {
console.warn(`ERROR(${err.code}): ${err.message}`);
}
const geolocation = navigator.geolocation.getCurrentPosition(
success,
error,
options
);
return geolocation;
};
我的错误如下:
Module build failed: SyntaxError: Unexpected token (112:17) getGeolocation **[=][1]** () => {
任何想法可能是什么问题?
在"webpack": "3.6.0", es2015