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);
}]);
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);
}]);
转载于:https://www.cnblogs.com/tongbiao/p/6994553.html