为了账号安全,请及时绑定邮箱和手机立即绑定

React Native 设置函数调用流程

React Native 设置函数调用流程

蓝山帝景 2023-07-06 17:37:57
我写了这段代码componentDidMount(){        Geolocation.getCurrentPosition(info => {        console.log(info.coords.latitude + "    " + info.coords.longitude)        this.setState({coords: {latitude: info.coords.latitude, longitude: info.coords.longitude, latitudeDelta: this.LATITUDE_DELTA, longitudeDelta: this.LONGITUDE_DELTA}})    }, error => Alert.alert('Error', JSON.stringify(error)),    {enableHighAccuracy: true, timeout: 20000, maximumAge: 1000});          console.log(this.state.coords.latitude + "    " + this.state.coords.longitude);    region = getapi(this.state.coords.latitude, this.state.coords.longitude)    this.setState({region})    console.log("TEMP: " + region);    hot = getHotBarb(this.state.region)    this.setState({hot})    rated = getRatedBarb(this.state.region)    this.setState({rated})    offer = getOfferBarb(this.state.region)    this.setState({offer})    this.setState({loading: false})}但在日志控制台上,我首先看到 this.state.coords.latitude + " " + this.state.coords.longitude (未定义)的日志和 getCurrentPosition 调用内的日志(正确的)。问题是我无法调用函数 getapi 因为 this.state.coords.latitude, this.state.coords.longitude 结果未定义 我需要先设置this.state.coords.latitude然后this.state.coords.longitude调用 中的其他函数componentDidMount()。如何在其他函数之前调用 getCurrentPosition 函数上的 setState?
查看完整描述

1 回答

?
慕的地10843

TA贡献1785条经验 获得超8个赞

试试这个方法


callApi(){


    console.log(this.state.coords.latitude + "    " + this.state.coords.longitude);


    region = getapi(this.state.coords.latitude, this.state.coords.longitude)

    this.setState({region})

    console.log("TEMP: " + region);

    hot = getHotBarb(this.state.region)

    this.setState({hot})

    rated = getRatedBarb(this.state.region)

    this.setState({rated})

    offer = getOfferBarb(this.state.region)

    this.setState({offer})


    this.setState({loading: false})

}



getCurrentPosition(){


    Geolocation.getCurrentPosition(info => {

        console.log(info.coords.latitude + "    " + info.coords.longitude);


        this.setState({coords: {latitude: info.coords.latitude, longitude: info.coords.longitude, latitudeDelta: this.LATITUDE_DELTA, longitudeDelta: this.LONGITUDE_DELTA}},

    () => this.callApi();  // call api here

    )


    }, error => Alert.alert('Error', JSON.stringify(error)),

    {enableHighAccuracy: true, timeout: 20000, maximumAge: 1000});

}



componentDidMount(){    

    this.getCurrentPosition();

}


查看完整回答
反对 回复 2023-07-06
  • 1 回答
  • 0 关注
  • 67 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信