react-native 入门实例疑问?

链接描述

这段代码

  fetchData: function() {
    fetch(REQUEST_URL)
      .then((response) => response.json())
      .then((responseData) => {
        this.setState({
          movies: responseData.movies,
        });
      })
      .done();
  },

有两个then语句,括号里面的 => 表示什么意思的? 这个是JS里的哪个用法?属于哪一块的知识点用法?

阅读 4.3k
2 个回答

es6 箭头操作符,跟lambda表达式差不多,表示一个匿名函数,参数为response,返回值为response.json()

(response) => response.json() === function(response) {return response.json()}
es6中点箭头函数, 优雅的特性

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