Posts by DogInCode • 56 points
3 posts
-
0
votes6
answers674
viewsA: Angular 6: Selected does not work with [(ngModel)] and (ngSubmit)="onsubmit()
Just try putting [selected]="c.selected"
-
1
votes1
answer498
viewsA: I can’t get the course parameters at angle 5
Try: const token = this.activatedRoute.snapshot.params.token; Don’t forget to put in constructor private activatedRoute: ActivatedRoute…
-
3
votes1
answer2359
viewsA: How to pass and receive a parameter between angular components
To receive a parameter in the component use const _id = this.activatedRoute.snapshot.params._id; Don’t forget to put in constructor private activatedRoute: ActivatedRoute…