码迷,mamicode.com
首页 > 其他好文 > 详细

React Native 获取网络数据

时间:2016-12-22 14:44:38      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:添加   ejs   方法   res   segment   get   git   class   github   

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

你也可以在React Native应用中使用ES7标准中的async/await 语法:

  // 注意这个方法前面有async关键字
  async getMoviesFromApi() {
    try {
      // 注意这里的await语句,其所在的函数必须有async关键字声明
      let response = await fetch(‘http://facebook.github.io/react-native/movies.json‘);
      let responseJson = await response.json();
      return responseJson.movies;
    } catch(error) {
      console.error(error);
    }
  }

别忘了catch住fetch可能抛出的异常,否则出错时你可能看不到任何提示。

默认情况下,iOS会阻止所有非HTTPS的请求。如果你请求的接口是http协议,那么首先需要添加一个App Transport Securty的例外,详细可参考这篇帖子

React Native 获取网络数据

标签:添加   ejs   方法   res   segment   get   git   class   github   

原文地址:http://www.cnblogs.com/dragonh/p/6210724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!