Posts by Gabriel Rodrigues Segalla • 31 points
3 posts
-
0
votes2
answers695
viewsA: How to apply a *ngFor to an array of objects in Angular where the name varies?
You need to take the key of the object, in the Angular you can use the Object.keys. Try to do something kind of like this. Component({ selector: 'app-myview', template: `<div *ngFor="let aluno of…
-
1
votes1
answer57
viewsA: Generate component at angular
Edited Viewing the file /usr/bin/ng realize that you are having package conflict, you have installed on your machine the package ng-common recommend you do the following: Uninstall the ng-common…
angular-6answered Gabriel Rodrigues Segalla 31 -
2
votes2
answers379
viewsA: How to search for partial text in a string list?
Hello, There are Python Association Operators in and not in, which are used to test whether a sequence is displayed on an object. You can check more about them here For your solution you can do the…