“Cómo iterar las teclas de objeto usando *ngfor” Código de respuesta

iterar objeto ngfor

// In your ts file
Object = Object;

// then in the template:

<div *ngFor="let key of Object.keys(objs)">
   my key: {{key}}
   my object {{objs[key] | json}} <!-- hier I could use ngFor again with Object.keys(objs[key]) -->
</div>
Mobile Star

Cómo iterar las teclas de objeto usando *ngfor

@Component({
  selector: 'keyvalue-pipe',
  template: `<span>
    <p>Object</p>
    <div *ngFor="let item of object | keyvalue">
      {{item.key}}:{{item.value}}
    </div>
    <p>Map</p>
    <div *ngFor="let item of map | keyvalue">
      {{item.key}}:{{item.value}}
    </div>
  </span>`
})
export class KeyValuePipeComponent {
  object: {[key: number]: string} = {2: 'foo', 1: 'bar'};
  map = new Map([[2, 'foo'], [1, 'bar']]);
}
Envious Elk

Respuestas similares a “Cómo iterar las teclas de objeto usando *ngfor”

Preguntas similares a “Cómo iterar las teclas de objeto usando *ngfor”

Más respuestas relacionadas con “Cómo iterar las teclas de objeto usando *ngfor” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código