美文网首页
React Native中的=>

React Native中的=>

作者: Grail_Oosaki | 来源:发表于2017-09-26 09:32 被阅读0次

表达式

如:

fetch(query)

.then(response=>response.json())

.then(json=>this._handleResponse(json.response))

.catch(error=>this.setState({

isLoading: false,

message: 'Something bad happended' + error

})

);

.then(response=>response.json())

.then(json=>this._handleResponse(json.response))

相当于

.then(function(response){response.json();})

.then(function(json){this._handleResponse(json.response);})

相关文章

网友评论

      本文标题:React Native中的=>

      本文链接:https://www.haomeiwen.com/subject/bdajextx.html