首页 > 技术文章 > angularjs 出现 “Possibly unhandled rejection: cancel ”错误

tongbiao 2017-06-12 19:10 原文

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);
}]);

推荐阅读