How to receive firebase information on an ion-select?

Hello, I am having difficulty retrieving information already stored in another registrations in an ion-select. In a previous registration the place is already registered and in a second registration I would like to receive in an ion-select a list of all the places that have been registered before.

I only need the names of the locations and that it is possible to save that name. in item.local. Follows code that is saving manually without redeeming from the so option Bank.

<ion-item>
      <ion-label>Local</ion-label>
      <ion-select [(ngModel)]="item.local" placeholder="Local">
        <ion-option value="Frente 1">Frente 1</ion-option>
        <ion-option value="Frente 2">Frente 2</ion-option>
        <ion-option value="Frente 3">Frente 3</ion-option>
        <ion-option value="Frente 4">Frente 4</ion-option>
        <ion-option value="Frente 5">Frente 5</ion-option>
      </ion-select>
    </ion-item>
Author: João Heytor, 2018-06-24

1 answers

That would be the answer, for anyone in difficulty as I was.

<ion-item>
  <ion-label>Status</ion-label>
      <ion-select  [(ngModel)]="item.status" placeholder="Status">
        <ion-option *ngFor="let status of statusList$ | async" value={{status.name}}>{{status.name}}</ion-option>
      </ion-select>
    </ion-item>>
 0
Author: João Heytor, 2018-06-26 00:06:36