更改为角度1.6.7导致错误
this.socialLogin= function (key) {
var jsonToSend = {
'access_token': key,
};
return $http.post(Config.apiUrl + '/api/v1/social/', jsonToSend).then(function (response) {
return response.data;
}, function (response) {
return $q.reject(response.data);
});
};
这里是示例代码,
tried
$qProvider.errorOnUnhandledRejections(false);
它只是掩盖了错误