Angularjs 1.7.9-可能未处理的拒绝

时间:2020-01-05 15:34:10

标签: angularjs unhandled-exception angularjs-ng-resource

即使使用,我也经常遇到此错误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();
    }
}

0 个答案:

没有答案