Bri*_*est 3 parent-child single-page-application typescript angular2-docheck angular
我已经创建了一个表组件,该表组件会根据传入的配置生成一个表。我知道可能有更好的编写可重用组件的方法,但是现在这就是我所拥有的。
基本上,组件采用带有列和数据源对象的配置,然后将列映射到数据源中的属性。
我的问题是,在某个时候我更改了表的数据源之一,例如,我首先清空了数组。
this.members.datasource = []
Run Code Online (Sandbox Code Playgroud)
然后像这样将新数据推送到数据源上...
for (let member in members) {
this.members.datasource.push(members[member]);
}
Run Code Online (Sandbox Code Playgroud)
我的问题是,执行此操作时,表不会使用数据源中的新数据进行更新。
我已经在组件中使用了ngDoCheck函数,并且当我更改数据源时确实会触发,但是没有其他反应。
这是所有相关代码和标记...
ip-datatable组件
import { Component, Input, Output, OnInit, EventEmitter, ElementRef, DoCheck } from "@angular/core";
import { ITable } from "./interfaces/index";
@Component({
selector: "ip-datatable",
templateUrl: "./ip-dataTable.component.html"
})
export class IpDataTableComponent implements OnInit, DoCheck {
@Input()
public config: ITable;
public tableData: any;
@Output()
private onRowClick = new EventEmitter();
constructor(private elem: ElementRef) {
}
public ngOnInit() {
// TODO: Decide whether or not to make this more dynamic (ie: excepts functions returning things other than a promise)
if (typeof (this.config.datasource) == "function") {
this.config.datasource()
.then((data: any) => {
this.tableData = data;
});
} else {
this.tableData = this.config.datasource;
}
}
public rowClicked(e:Event) {
this.onRowClick.emit(e);
}
public ngDoCheck() {
}
}
Run Code Online (Sandbox Code Playgroud)
ip-datatable组件的模板html
<table class="table table-bordered table-hover">
<thead>
<tr>
<td *ngFor="let column of config.columns">{{column.header}}</td>
</tr>
</thead>
<tbody>
<tr
*ngFor="let item of tableData"
[class]="(config.rowConfig !== undefined) ? config.rowConfig.classes : ''"
(click)="rowClicked($event)" [id]="(item.id !== undefined) ? item.id : ''">
<td *ngFor="let column of config.columns">{{item[column.mapKey]}}</td>
</tr>
</tbody>
</table>
Run Code Online (Sandbox Code Playgroud)
利用ip-datatable的组件
import { Component, OnInit, AfterViewInit, ApplicationRef } from "@angular/core";
import { ActivatedRoute } from "@angular/router";
import { EngagementService } from "../../services/engagement.service";
import { EngagementEditModel } from "../../models/index";
import { ITable } from "../../core/components/ip-datatable/interfaces/index";
@Component({
templateUrl: "engagement-context.component.html"
})
export class EngagementContextComponent {
public id: string;
public engagementDetails: EngagementEditModel;
// Temporarily hardcode groups as there is only two available.
public groups: ITable = {
columns: [
{
header: "Name",
mapKey: "name"
}
],
rowConfig: {
classes: "clickable override"
},
datasource: [
{
name: "Owners"
},
{
name: "Users"
}]
};
public members: ITable = {
columns: [
{
header: "Name",
mapKey: "name"
}
],
datasource: []
}
constructor(private engagementService: EngagementService, private route: ActivatedRoute, private appRef: ApplicationRef) {
this.id = route.snapshot.params["id"];
this.engagementService.getEngagementEditDetailsById(parseInt(this.id))
.then((data: EngagementEditModel) => {
this.engagementDetails = data;
console.log(this.engagementDetails); // tslint:disable-line
});
}
public groupClicked(e: Event) {
// Get the element of the event
let elem: IEventElement = e.currentTarget;
// Get the name of the selected node
let groupName = elem.textContent.trim().toLowerCase();
let members = (<any>this.engagementDetails)[groupName];
interface IEventElement extends EventTarget {
textContent?: string;
}
this.members.datasource = [];
for (let member in members) {
this.members.datasource.push(members[member]);
}
}
}
Run Code Online (Sandbox Code Playgroud)
ip-datatable的HTML使用
<div class="row">
<div class="col-md-12">
<section class="section">
<div class="section-body">
<h4 class="section-title">Groups</h4>
<ip-datatable
[config]="groups"
(onRowClick)="groupClicked($event)">
</ip-datatable>
</div>
</section>
</div>
<div class="col-md-12">
<section class="section">
<div class="section-body">
<h4 class="section-title">Members</h4>
<ip-datatable
[config]="members"
></ip-datatable>
</div>
</section>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
好的,所以我的问题是在ngOnInit中,我将此this.config.datasource分配给一个名为tableData的变量。好吧,当发生更改时,它永远不会重新分配给该变量,因此,通过调用ngDoCheck函数,然后将this.config.datasource分配给tableData,我就可以根据需要反映更改。
考虑到我听说过ngDoCheck的性能障碍,如果我开始注意到性能缺陷,我可能会做其他事情。如果有人可以在评论中对此有所了解,我将不胜感激。