在ngfor中添加可观察对象

时间:2019-06-06 21:52:13

标签: angular

我可以在方法ConsultarTelefonos()中添加可观察对象,以便仅在他们单击电话部分时才收费。

我正在使用模式加载弹出窗口

menu-pacientes.component.ts

private telefonoPacienteLista: TelefonoInterface;

ConsultarTelefonos() {
  this.dataApiService.ListPatientsCellphone()
    .subscribe((
      data: TelefonoInterface) => {
      this.telefonoPacienteLista = data;
      console.log("Telefonos Cargados")
    }, error => this.mensajeError(error));
}

menu-pacientes.component.html

<ng-template #pacienteModal>
  <div  id="myModal">
    <div class="modal-dialog modal-dialog-centered modal-lg">
      <div class="modal-content">

    <!-- Modal body -->
    <div class="modal-body">
      <ul class="nav nav-tabs">
        <li><a class="active" data-toggle="tab" href="#t-gral">General</a></li>
        <li><a data-toggle="tab" href="#t-tel">Teléfono(s)</a></li> <!-- Here i want add it -->
        <li><a data-toggle="tab" href="#t-antecedentes">Antecedentes</a></li>
        <li><a data-toggle="tab" href="#t-estudio">Estudio</a></li>
        <li><a data-toggle="tab" href="#t-consulta">Consulta</a></li>
        <li><a data-toggle="tab" href="#t-facturacion">Datos de Facturación</a></li>
      </ul>

0 个答案:

没有答案