React Native获取本地API

时间:2020-01-22 08:16:28

标签: api react-native expo

我有一个expo react native应用,我想在另一个项目中使用我制作的API中的函数。我在Postman中测试了网址,并且该网址正常工作。但是我得到了错误:应用中的Network error failed

klt_idklt_name来自“客户”表。网址指向一个函数,该函数显示“客户”表中的所有记录。

这就是我现在拥有的:

constructor(props){
    super(props);
    this.state ={ isLoading: true}
  }

  componentDidMount(){
    return fetch('http://127.0.0.1:8000/api/v2/klant', )
      .then((response) => response.json())
      .then((responseJson) => {
        console.log(responseJson)
        this.setState({
          isLoading: false,
          dataSource: responseJson.data,
        }, function(){

        });

      })
      .catch((error) =>{
        console.error(error);
      });
  }


  render(){

    if(this.state.isLoading){
      return(
        <View style={{flex: 1, padding: 20}}>
          <ActivityIndicator/>
        </View>
      )
    }

    return(
      <View style={{flex: 1, paddingTop:20}}>
        <FlatList
          data={this.state.dataSource}
          renderItem={({item}) => <Text>{item.klt_id}, {item.klt_name}</Text>}
          keyExtractor={({id}, index) => id}
        />
      </View>
    );
  }
}

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以尝试ngrok:它可以让您拥有一个“正常的” HTTPS URL,您应该可以在自己的Expo应用程序中使用它,而不会出现任何问题。他们网站上的示例:

enter image description here