ERROR EmptyErrorImpl message: “no elements in sequence”, name: “EmptyError” in Angular 7Angular HTTP GET with TypeScript error http.get(…).map is not a function in [null]How to enable production mode in Angular 2Angular/RxJs When should I unsubscribe from `Subscription`Angular 2 routes children with outletsAngular 4 routing works for only one next routeHow do I get the route parameter out of ParamMap and assign it to a propertyRxjs import issues in Angular 6Angular 7 Routes with Resolvers don't load ComponentsHow to implement a global loader in Angular 7.1Property doesn't exist on type
Alchemist potion on Undead
Interaction between Ethereal Absolution versus Edgar Markov with Captivating Vampire
Church Booleans
Is it allowable to use an organization's name to publish a paper in a conference, even after I graduate from it?
Sort, slice and rebuild new object with array data
Starships without computers?
Use of vor in this sentence
How to avoid using System.String with Rfc2898DeriveBytes in C#
Does Denmark lose almost $700 million a year "carrying" Greenland?
Why would the President need briefings on UFOs?
How big would a Daddy Longlegs Spider need to be to kill an average Human?
Are there categories whose internal hom is somewhat 'exotic'?
How can I describe being temporarily stupid?
Land Registry Clause
Best Practice: dependency on data model names
How does the Saturn V Dynamic Test Stand work?
Does the Symbiotic Entity damage apply to a creature hit by the secondary damage of Green Flame Blade?
Is this kind of description not recommended?
Multicolumn in table not centered
How could Tony Stark wield the Infinity Nano Gauntlet - at all?
Can others monetize my project with GPLv3?
Are required indicators necessary for radio buttons?
What is the evidence on the danger of feeding whole blueberries and grapes to infants and toddlers?
Was Switzerland really impossible to invade during WW2?
ERROR EmptyErrorImpl message: “no elements in sequence”, name: “EmptyError” in Angular 7
Angular HTTP GET with TypeScript error http.get(…).map is not a function in [null]How to enable production mode in Angular 2Angular/RxJs When should I unsubscribe from `Subscription`Angular 2 routes children with outletsAngular 4 routing works for only one next routeHow do I get the route parameter out of ParamMap and assign it to a propertyRxjs import issues in Angular 6Angular 7 Routes with Resolvers don't load ComponentsHow to implement a global loader in Angular 7.1Property doesn't exist on type
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am getting a weird error while trying to navigate to different routes from a specific component. If I navigate to different routes from other components I am not seeing this error.
I am attaching the screenshot of the error
I have searched for this issue and seems to be the problem with RxJS or empty routes. But I added pathMatch:'full' to empty routes and my RxJS version is 6.3.3. Any idea or anyone out here resolved the same issue could be of great help.
angular rxjs angular-routing angular7 rxjs6
add a comment |
I am getting a weird error while trying to navigate to different routes from a specific component. If I navigate to different routes from other components I am not seeing this error.
I am attaching the screenshot of the error
I have searched for this issue and seems to be the problem with RxJS or empty routes. But I added pathMatch:'full' to empty routes and my RxJS version is 6.3.3. Any idea or anyone out here resolved the same issue could be of great help.
angular rxjs angular-routing angular7 rxjs6
3
Looking at the stack trace, you probably have afirst
pipe somewhere, as well astakeUntil
. YourtakeUntil
notifier (inngOnDestroy
@TextblockComponent
) closes the Observable before it can emit its first value, thus causing EmptyError. Change your pipe totake(1)
instead offirst()
– ggradnig
Mar 27 at 14:59
@ggradnig Great help. Please post it as the answer I will accept it. Again thanks a lot
– BKM
Mar 27 at 15:15
Sure, there you go. You're welcome!
– ggradnig
Mar 27 at 15:24
add a comment |
I am getting a weird error while trying to navigate to different routes from a specific component. If I navigate to different routes from other components I am not seeing this error.
I am attaching the screenshot of the error
I have searched for this issue and seems to be the problem with RxJS or empty routes. But I added pathMatch:'full' to empty routes and my RxJS version is 6.3.3. Any idea or anyone out here resolved the same issue could be of great help.
angular rxjs angular-routing angular7 rxjs6
I am getting a weird error while trying to navigate to different routes from a specific component. If I navigate to different routes from other components I am not seeing this error.
I am attaching the screenshot of the error
I have searched for this issue and seems to be the problem with RxJS or empty routes. But I added pathMatch:'full' to empty routes and my RxJS version is 6.3.3. Any idea or anyone out here resolved the same issue could be of great help.
angular rxjs angular-routing angular7 rxjs6
angular rxjs angular-routing angular7 rxjs6
asked Mar 27 at 14:51
BKMBKM
4,7594 gold badges25 silver badges43 bronze badges
4,7594 gold badges25 silver badges43 bronze badges
3
Looking at the stack trace, you probably have afirst
pipe somewhere, as well astakeUntil
. YourtakeUntil
notifier (inngOnDestroy
@TextblockComponent
) closes the Observable before it can emit its first value, thus causing EmptyError. Change your pipe totake(1)
instead offirst()
– ggradnig
Mar 27 at 14:59
@ggradnig Great help. Please post it as the answer I will accept it. Again thanks a lot
– BKM
Mar 27 at 15:15
Sure, there you go. You're welcome!
– ggradnig
Mar 27 at 15:24
add a comment |
3
Looking at the stack trace, you probably have afirst
pipe somewhere, as well astakeUntil
. YourtakeUntil
notifier (inngOnDestroy
@TextblockComponent
) closes the Observable before it can emit its first value, thus causing EmptyError. Change your pipe totake(1)
instead offirst()
– ggradnig
Mar 27 at 14:59
@ggradnig Great help. Please post it as the answer I will accept it. Again thanks a lot
– BKM
Mar 27 at 15:15
Sure, there you go. You're welcome!
– ggradnig
Mar 27 at 15:24
3
3
Looking at the stack trace, you probably have a
first
pipe somewhere, as well as takeUntil
. Your takeUntil
notifier (in ngOnDestroy
@ TextblockComponent
) closes the Observable before it can emit its first value, thus causing EmptyError. Change your pipe to take(1)
instead of first()
– ggradnig
Mar 27 at 14:59
Looking at the stack trace, you probably have a
first
pipe somewhere, as well as takeUntil
. Your takeUntil
notifier (in ngOnDestroy
@ TextblockComponent
) closes the Observable before it can emit its first value, thus causing EmptyError. Change your pipe to take(1)
instead of first()
– ggradnig
Mar 27 at 14:59
@ggradnig Great help. Please post it as the answer I will accept it. Again thanks a lot
– BKM
Mar 27 at 15:15
@ggradnig Great help. Please post it as the answer I will accept it. Again thanks a lot
– BKM
Mar 27 at 15:15
Sure, there you go. You're welcome!
– ggradnig
Mar 27 at 15:24
Sure, there you go. You're welcome!
– ggradnig
Mar 27 at 15:24
add a comment |
1 Answer
1
active
oldest
votes
EmptyError
is thrown by the first
pipe if the source observable is closed before it could emit any notification.
Your stack trace shows that TextblockComponent
triggers a takeUntil
pipe in its ngOnDestroy
function, which usually closes an Observable. It can be assumed that this closes the Observable that has the first
pipe and thus causes an EmptyError
.
The error can be circumvented by using take(1)
instead of first()
.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380193%2ferror-emptyerrorimpl-message-no-elements-in-sequence-name-emptyerror-in%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
EmptyError
is thrown by the first
pipe if the source observable is closed before it could emit any notification.
Your stack trace shows that TextblockComponent
triggers a takeUntil
pipe in its ngOnDestroy
function, which usually closes an Observable. It can be assumed that this closes the Observable that has the first
pipe and thus causes an EmptyError
.
The error can be circumvented by using take(1)
instead of first()
.
add a comment |
EmptyError
is thrown by the first
pipe if the source observable is closed before it could emit any notification.
Your stack trace shows that TextblockComponent
triggers a takeUntil
pipe in its ngOnDestroy
function, which usually closes an Observable. It can be assumed that this closes the Observable that has the first
pipe and thus causes an EmptyError
.
The error can be circumvented by using take(1)
instead of first()
.
add a comment |
EmptyError
is thrown by the first
pipe if the source observable is closed before it could emit any notification.
Your stack trace shows that TextblockComponent
triggers a takeUntil
pipe in its ngOnDestroy
function, which usually closes an Observable. It can be assumed that this closes the Observable that has the first
pipe and thus causes an EmptyError
.
The error can be circumvented by using take(1)
instead of first()
.
EmptyError
is thrown by the first
pipe if the source observable is closed before it could emit any notification.
Your stack trace shows that TextblockComponent
triggers a takeUntil
pipe in its ngOnDestroy
function, which usually closes an Observable. It can be assumed that this closes the Observable that has the first
pipe and thus causes an EmptyError
.
The error can be circumvented by using take(1)
instead of first()
.
answered Mar 27 at 15:23
ggradnigggradnig
4,5111 gold badge9 silver badges30 bronze badges
4,5111 gold badge9 silver badges30 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380193%2ferror-emptyerrorimpl-message-no-elements-in-sequence-name-emptyerror-in%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Looking at the stack trace, you probably have a
first
pipe somewhere, as well astakeUntil
. YourtakeUntil
notifier (inngOnDestroy
@TextblockComponent
) closes the Observable before it can emit its first value, thus causing EmptyError. Change your pipe totake(1)
instead offirst()
– ggradnig
Mar 27 at 14:59
@ggradnig Great help. Please post it as the answer I will accept it. Again thanks a lot
– BKM
Mar 27 at 15:15
Sure, there you go. You're welcome!
– ggradnig
Mar 27 at 15:24