angularjs 出现 “Possibly unhandled rejection: cancel ”错误

Try adding this to your config. I had a similar is once and this workaround did the trick.

app.config(['$qProvider', function ($qProvider) {
    $qProvider.errorOnUnhandledRejections(false);
}]);

posted on 2017-06-12 19:10  童彪  阅读(1342)  评论(0编辑  收藏  举报

导航