Possibly unhandled rejection
即使在使用
$promise.then(success, err)
或时,我也经常遇到此错误$promise.then(success).catch(err)
我应该怎么做才能解决这个错误。谢谢
这是代码
this.User = $injector.get('User');
this.User.get(id).$promise
.then(fn, fn)
在用户资源中:
class UserResource {
constructor($resource) {
'ngInject';
this.$resource = $resource;
}
get(id) {
return this.$resource(apis.user + id).get();
}
}