tengo una variedad de articulos
{ "id": 1, "work_description": [ "Did this and that", "Doing this and that", "Does that and that", "Do this and that" ], "company_name": "Google", "time_range": "April 2021 - Current", "position": "Sales" } Quiero describir work_description como una lista en Angular, pero lo que obtengo es un párrafo de los detalles. Esto es lo que tengo:
• Did this and that, Doing this and that, Does that and that, Do this and thatEsto es lo que quiero:
• Did this and that • Doing this and that • Does that and that • Do this and thatAyudar amablemente
prueba esto
<li *ngFor="let item of obj.work_description">{{item}}</li>