最近剛開始學React-Native,按照這個教程做例子http://www.raywenderlich.com/99473/introducing-react-native-building-apps-javascript
對其中的=>不明白是什麼意思?是React的語法嗎?但是看了React也沒找到這個
fetch(query)
.then(response=>response.json())
.then(json=>this._handleResponse(json.response))
.catch(error=>this.setState({
isLoading: false,
message: 'Something bad happended' + error
})
);
謝謝
這個好像是拉姆達表達式
你可以在網上搜索拉姆達表達式