1
おかげでネイティブに反応して、私はネイティブの反応で初心者ですcomponentDidMountのfuctionの外にネイティブアクセス変数を反応させます。は私がgetCurrentPosition機能のうち、currentPostionにアクセスする必要が事前</p> <p>で
コード:
constructor(props) {
super(props)
this.state = {
coords: [],
currentPostion: ""
}
}
componentDidMount() {
navigator.geolocation.getCurrentPosition(
(position) => {
var initialPosition = JSON.stringify(position);
this.setState({'currentPostion':initialPosition});
},
(error) => alert(error.message),
{enableHighAccuracy: true, timeout: 20000, maximumAge: 1000}
);
alert(JSON.stringify(this.state));
}
ヘルプミー!