react-native 入门实例疑问?


链接描述

这段代码


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

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

react-native

Hiwwy 9 years, 1 month ago

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

清廉正直文文丸 answered 9 years, 1 month ago

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

Phany answered 9 years, 1 month ago

Your Answer