Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot read property 'outlets' of null in Angular 4

Tags:

I have Angular 4.3.6 project where a template snippet produces this error.

Template block:

<a [routerLink]="['/article',article?.id]">{{article?.title}}</a>

Error stack trace:

ArticleSpComponent.html:26 ERROR TypeError: Cannot read property 'outlets' of null     at createNewSegmentGroup (router.es5.js:2967)     at updateSegmentGroup (router.es5.js:2896)     at router.es5.js:2914     at forEach (router.es5.js:593)     at updateSegmentGroupChildren ( 

The error cause seems to be obvious. article variable is fetched async from Http and initialized after page is rendered so firstly it's null. However I thought that putting ? after this variable allows to avoid this issue.

Can you please advise?

like image 774
Sergiy Avatar asked Aug 28 '17 09:08

Sergiy


1 Answers

? in article?.id is working fine, but the RouterLink directive doesn't like getting a null passed.

You could work around using something like:

<a *ngIf="article" [routerLink]="['/article',article?.id]">{{article?.title}}</a> <a *ngIf="!article">{{article?.title}}</a> 
like image 185
Günter Zöchbauer Avatar answered Sep 20 '22 13:09

Günter Zöchbauer