这是表达式。
.then(response=>response.json()).then(json=>this._handleResponse(json.response))
相当于
.then(function(response){response.json();}).then(function(json){this._handleResponse(json.response);})