Readdy Write  
0,00 €
Your View Money
Views: Count
Self 20% 0
Your Content 60% 0

Users by Links 0
u1*(Content+Views) 10% 0
Follow-Follower 0
s2*(Income) 5% 0

Count
Followers 0
Login Register as User

Angular Frontend 08: Dummy Daten anzeigen in app.component.html

02.02.2023 (👁1939)


Mit einer einfach *ngFor schleife in der compontent.html werden dann die Daten aus dem Service angezeigt werden

App.compontent.html

<div style="flex-direction: row;">

 

  <div *ngFor="let article of articles">

    <div>id: {{article.id}} </div>

    <div>title: {{article.title}} </div>

    <div>text: {{article.text}} </div>

  </div>

 

</div>