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 issueIonic 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:
- Created 6 years ago
- Reactions:1
- Comments:6 (1 by maintainers)
Just to inform that I also have this error which is related to
loader.dismissAll()
. When you call it twice it throws this error.It would be great if
loader.dismissAll()
checked if there are any loaders present and do nothing if none exist. I haveloader.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()