1

我正在大量使用 ngx-bootstrap 模态开发一个 Angular 4 应用程序。我目前正在使用模板 + modalService 的方式打开模态。在点击事件期间,这行代码被调用:

@ViewChild() worklistTemplate;
// ...
this.modalRef = this.modalService.show(this.worklistTemplate, this.config);

工作清单模板如下所示:

<ng-template #worklistTemplate>
  <app-action-view
    [leftButtons]="leftButtons"
    [labelHeader]="modalHeader"
    [labelIcon]="modalIcon"
    [modalRef]="modalRef">
    <div class="row modal-info-panel">
      <div class="col-xs-4 modal-user-info">
        <fa name="mars" class="gender-icon"></fa>
        <div class="field-panel">
          <input type="text"
            [ngModel]="rowInfo.lastName"
            [ngClass]="{ 'modal-editable-field': modalFieldsEditable }"
            [disabled]="!modalFieldsEditable">
          <input type="text"
            [ngModel]="rowInfo.firstName"
            [ngClass]="{ 'modal-editable-field': modalFieldsEditable }"
            [disabled]="!modalFieldsEditable">
          <div>
            <label for="modal-mrn">MRN --</label>
            <input id="modal-mrn" type="text"
              [ngModel]="rowInfo.mrn"
              [ngClass]="{ 'modal-editable-field': modalFieldsEditable }"
              [disabled]="!modalFieldsEditable">
          </div>
          <div>
            <label for="modal-dob">DOB --</label>
            <input id="modal-dob" type="text"
              [ngModel]="rowInfo.birthDate"
              [ngClass]="{ 'modal-editable-field': modalFieldsEditable }"
              [disabled]="!modalFieldsEditable">
          </div>
          <div class="edit-panel">
            <fa *ngIf=modalFieldsEditable class="worklist-edit-buttons green-hover link" name="floppy-o" tooltip="Save" (click)=saveChanges()></fa>
            <fa *ngIf=modalFieldsEditable class="worklist-edit-buttons red-hover link" name="times" tooltip="Cancel" (click)=toggleModalFields()></fa>
          </div>
        </div>
      </div>
      <div class="col-xs-8 modal-id-info">
        Associated ID
        <div class="full-width">
          <div class="row" *ngFor="let i of rowInfo.associatedIDs">
            <div class="col-xs-6 cell">{{i.id}}</div><div class="col-xs-6 cell">{{i.source}}</div>
          </div>
        </div>
      </div>
    </div>
    <div class="row" id="modal-table">
      <app-table-view
            [columns]="objDetailsCols"
            [tableData]="objDetailsData"
            [expandTemplate]="rowImageContainer"
            [expandColStyle]="expandColStyle">
      </app-table-view>
    </div>
    <div *ngIf="resolvePanelVisible" class="resolve-panel"
      [@slideRight]>
      <div class="resolve-label">
        <fa class="lt-icon" name="wrench"></fa>
        Resolve QA Issue
      </div>
      <div class="resolve-body">
        Hello, World!
      </div>
      <div class="resolve-footer">
        <a>Validate</a>
        <a>Resolve</a>
        <a>Reload</a>
        <a (click)="toggleResolvePanel()">Close</a>
      </div>
    </div>
  </app-action-view>
</ng-template>

可以通过在模态边界外单击或在 ActionViewComponent 内有一个调用 modalRef.hide() 的按钮来关闭模态。

随着越来越多的模式打开,内存使用量急剧增加。事实上,如果我打开 modal 大约 5 次,应用程序就会变得迟缓并且几乎无法使用。如果我们的 TableViewComponent 中有很多行,这一点尤其明显。

我使用模态的方式有问题,还是与 ngx-bootstrap 模态有关?或者,问题是否与浏览器有关且不可避免?我现在正在 Chrome 62 上开发。

我已经验证 onDestroy 永远不会在模态内的 TableViewComponent 上调用。如果我导航到不同的页面组件,它甚至不会被调用,尽管从页面导航时另一个表(不在模板中)确实调用了 onDestroy。

非常感谢任何反馈-我在这方面被困太久了。

4

1 回答 1

1

不幸的是,这是 ngx-bootstrap 的问题。我创建了一个拉取请求(https://github.com/valor-software/ngx-bootstrap/pull/3179),所以一旦我的 PR 被合并并发布了新版本,这个问题就会得到解决。

于 2017-12-04T11:11:20.710 回答