question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Unhandled Promise rejection: no views in the stack to be removed ; Zone: <root> ; Task: Promise.then ; Value: no views in the stack to be removed

See original GitHub issue

Ionic version: (check one with “x”) [ ] 1.x [ ] 2.x [ x] 3.x

I’m submitting a … (check one with “x”) [ x] bug report [ ] feature request [ ] support request => Please do not submit support requests here, use one of these channels: https://forum.ionicframework.com/ or http://ionicworldwide.herokuapp.com/

Current behavior:

After http request, i get this error: Unhandled Promise rejection: no views in the stack to be removed ; Zone: <root> ; Task: Promise.then ; Value: no views in the stack to be removed.

Error: Uncaught (in promise): no views in the stack to be removed

Expected behavior:

Steps to reproduce:

Related code: let loader = this.loadingCtrl.create({ content: contentLoader }); loader.present(); this.news = []; this.newsTop = []; this.dataService.loadNews(Constant.API_ENDPOINT_STIRI, topParams).subscribe(data => { if (data.status == 200) { this.mappingService.getNews(data.data.stiri).forEach((topArticles) => { this.newsTop.push(topArticles); }) } else { this.setState(‘Aplicația nu poate comunica cu serverul.’); } }, (err) => { loader.dismissAll(); this.setState(‘Eroare. Posibil ca aplicația să nu fie conectată la internet.’); }, () => { this.dataService.loadNews(Constant.API_ENDPOINT_STIRI, params).subscribe(data => { this.mappingService.getNews(data.data.stiri).forEach((articles) => { this.news.push(articles); loader.dismissAll(); }) },(err) => { loader.dismissAll(); this.notify(‘Nu s-au putut încarca articolele.’); throw new Error(JSON.stringify(err)); }, () => { this.dataService.loadNews(Constant.API_ENDPOINT_STIRI, secondParams).subscribe(data => { this.mappingService.getNews(data.data.stiri).forEach((articles) => { articles.secondNews = 1 this.news.push(articles); }) },(err) => { this.notify(‘Nu s-au putut încarca articolele.’); throw new Error(JSON.stringify(err)); }, () => { if (this.news.length == 0 && this.newsTop.length == 0) { this.setState(‘Nu s-a găsit nici un articol.’); } this.currentPage++; this.firstLoadCompleted = true; }); }); }); }

insert any relevant code here

Other information:

Ionic info: (run ionic info from a terminal/cmd prompt and paste output below):

insert the output from ionic info here

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:1
  • Comments:6 (1 by maintainers)

github_iconTop GitHub Comments

8reactions
digauscommented, Jun 6, 2017

Just to inform that I also have this error which is related to loader.dismissAll(). When you call it twice it throws this error.

4reactions
elifarescommented, Oct 17, 2017

It would be great if loader.dismissAll()checked if there are any loaders present and do nothing if none exist. I have loader.dismissAll() in multiple parts of my code (depending on certain conditions) and sometimes more than one runs and this error is thrown. I guess I could put my own if statements before each dismissAll()

Read more comments on GitHub >

github_iconTop Results From Across the Web

Ionic - Error: Uncaught (in promise): removeView was not found
Solution: While creating the loader, check if the loader instance is not already present, only then create another instance.
Read more >
Tracking Unhandled Promise Rejections - TrackJS
When a promise is rejected, it looks for a rejection handler. If it finds one, like in the example above, it calls the...
Read more >
Unhandled Promise rejection while working with Angular 5
Unhandled Promise rejection : Unable to get property 'schedule' of undefined or null reference ; Zone: <root> ; Task: Promise.then ; Value: TypeError:...
Read more >
Resolving the JavaScript Promise Error "TypeError: Cannot ...
In this guide, we will cover two code examples containing a bugs that cause this TypeError and then refactor the code to resolve...
Read more >
5 Top Rated Q&A for Angular on Stack Overflow | by Beste
It's vote 1774, 1.2m views zone.js:461 Unhandled Promise rejection: Template parse errors: Can't bind to 'ngModel' since it isn't a known ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found