反应原生如何每 x 分钟从 api 获取

新手上路,请多包涵

我想在android上每x分钟运行一次(使用React native)

 function getMoviesFromApiAsync() {
    return fetch('https://facebook.github.io/react-native/movies.json').then((response) => response.json()) .then((responseJson) => {
  return responseJson.movies; }) .catch((error) => { console.error(error); });
}

我去使用文档中的示例,因为我仍然不确定我将如何进行这种获取。

我不确定我应该如何开始这个(也许制作一个android原生处理程序?)。我只找到了一个组件,但那是用于 ios iOS Background Fetch API Implementation

原文由 MePo 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 537
2 个回答
 componentDidMount(){
  this.timer = setInterval(()=> this.getMovies(), 1000)
 }

async getMovies(){

 fetch('https://facebook.github.io/react-native/movies.json', {method: "GET"})
  .then((response) => response.json())
  .then((responseData) =>
  {
    //set your data here
     console.log(responseData);
  })
  .catch((error) => {
      console.error(error);
  });

}

原文由 Shailesh Prajapati 发布,翻译遵循 CC BY-SA 3.0 许可协议

你必须在你得到回调的地方设置时间。

 ComponentWillMount() {
    AsyncStorage.getItem('accessToken').then((token) => {
      this.setState({
        isLoading: false,
         time :5000

      });
    });
  },

原文由 ALoK VeRMa 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题