无法从 angular 中的 parent 更新 child 组件视图 2
Not able to update child component view from parent in angular 2
朋克:Here
我有一个 child comp chartist.component 用于渲染 chartist charts
在我的 parent 组件 app.ts 中,我调用了 chartist.component 两次来渲染折线图和条形图
在 parent comp 中,我有按钮来刷新折线图和条形图,它们只是更改数据变量中的数据,然后传递给 child comp 以呈现图表。
我的问题是,图表仅在单击刷新按钮时更新一次。每次我的数据 object 发生变化时,我都想更新图表。
app.ts (parent comp):
import {Component, NgModule, OnInit, AfterViewInit} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
import {ChartistChart} from './chartist.component'
@Component({
selector: 'my-app',
templateUrl: './src/app.html',,
})
export class App implements OnInit, AfterViewInit {
name:string;
data: any;
isFirst:true;
dataIndex:number;
allData:any;
constructor() {
this.name = 'Angular2'
this.dataIndex=0;
this.allData=[{chart data1},{chart data 2}];
}
ngOnInit() {
this.getAllCharts();
}
ngAfterViewInit() {}
public getAllCharts(){
this.data= this.allData[this.dataIndex];
return this.allData[this.dataIndex];
}
public updateLineChart(){
this.isFirst = !this.isFirst;
this.dataIndex = this.isFirst?0:1;
this.data.simpleLineData = this.allData[this.dataIndex].simpleLineData;
this.data.simpleLineOptions = this.allData[this.dataIndex].simpleLineOptions;
}
public updateBarChart(){
this.isFirst = !this.isFirst;
this.dataIndex = this.isFirst?0:1;
this.data.simpleBarData = this.allData[this.dataIndex].simpleBarData;
this.data.simpleBarOptions = this.allData[this.dataIndex].simpleBarOptions;
}
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App, ChartistChart ],
bootstrap: [ App ]
})
export class AppModule {}
app.html:
<div style="width:100%; height:350px">
<button (click)="updateLineChart()">Update Line chart</button> DataIndex: {{dataIndex}}
<chartist-chart *ngIf="data" chartistChartClass="ct-chart" chartistChartType="Line" [chartistChartData]="data['simpleLineData']"
[chartistChartOptions]="data['simpleLineOptions']">
</chartist-chart>
</div>
<br/> <br/>
<div style="width:100%; height:350px">
<button (click)="updateBarChart()">Update Bar chart</button> DataIndex: {{dataIndex}}
<chartist-chart *ngIf="data" chartistChartClass="ct-chart" chartistChartType="Bar" [chartistChartData]="data['simpleBarData']"
[chartistChartOptions]="data['simpleBarOptions']">
</chartist-chart>
</div>
chartist.component.ts (child):
import {
Component, ViewChild, Input, Output, ElementRef, EventEmitter, ChangeDetectorRef
} from '@angular/core';
@Component({
selector: 'chartist-chart',
templateUrl: './src/chartistChart.html',
providers: [],
})
export class ChartistChart {
@Input() chartistChartType: string;
@Input() chartistChartData: Object;
@Input() chartistChartOptions: Object;
@Input() chartistChartResponsive: Object;
@Input() chartistChartClass: string;
@Output() onChartReady = new EventEmitter<any>();
@ViewChild('chartistChart') public _selector: ElementRef;
private chart;
constructor(private cdr: ChangeDetectorRef){}
ngAfterViewInit() {
console.log('chart init', this.chartistChartData)
let _self = this;
_self.chart = new Chartist[_self.chartistChartType](_self._selector.nativeElement,
_self.chartistChartData,
_self.chartistChartOptions);
_self.onChartReady.emit(_self.chart);
this.cdr.detectChanges();
}
ngOnChanges(changes) {
if (this.chart) {
console.log('chartistChartData changed: ',this.chartistChartData);
(<any>this.chart).update(this.chartistChartData, this.chartistChartOptions);
}
}
ngOnDestroy(): void {
if (this.chart) {
this.chart.detach();
}
}
}
chartistChart.html:
<div #chartistChart class="{{chartistChartClass || ''}}"></div>
您需要做的就是在每次单击按钮时手动调用 this.getAllCharts()
,以便将 this.data
重新分配给新的数据系列:
public updateLineChart() {
this.dataIndex = this.dataIndex ? 0 : 1;
this.getAllCharts();
}
public updateBarChart() {
this.dataIndex = this.dataIndex ? 0 : 1;
this.getAllCharts();
}
你也可以去掉多余的isFirst
标志,dataIndex
就够了。而且您也不需要手动设置 this.data.simpleBarData
和 this.data.simpleLineData
,因为它已经作为模板中的道具传递。
朋克:Here
我有一个 child comp chartist.component 用于渲染 chartist charts
在我的 parent 组件 app.ts 中,我调用了 chartist.component 两次来渲染折线图和条形图
在 parent comp 中,我有按钮来刷新折线图和条形图,它们只是更改数据变量中的数据,然后传递给 child comp 以呈现图表。
我的问题是,图表仅在单击刷新按钮时更新一次。每次我的数据 object 发生变化时,我都想更新图表。
app.ts (parent comp):
import {Component, NgModule, OnInit, AfterViewInit} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
import {ChartistChart} from './chartist.component'
@Component({
selector: 'my-app',
templateUrl: './src/app.html',,
})
export class App implements OnInit, AfterViewInit {
name:string;
data: any;
isFirst:true;
dataIndex:number;
allData:any;
constructor() {
this.name = 'Angular2'
this.dataIndex=0;
this.allData=[{chart data1},{chart data 2}];
}
ngOnInit() {
this.getAllCharts();
}
ngAfterViewInit() {}
public getAllCharts(){
this.data= this.allData[this.dataIndex];
return this.allData[this.dataIndex];
}
public updateLineChart(){
this.isFirst = !this.isFirst;
this.dataIndex = this.isFirst?0:1;
this.data.simpleLineData = this.allData[this.dataIndex].simpleLineData;
this.data.simpleLineOptions = this.allData[this.dataIndex].simpleLineOptions;
}
public updateBarChart(){
this.isFirst = !this.isFirst;
this.dataIndex = this.isFirst?0:1;
this.data.simpleBarData = this.allData[this.dataIndex].simpleBarData;
this.data.simpleBarOptions = this.allData[this.dataIndex].simpleBarOptions;
}
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App, ChartistChart ],
bootstrap: [ App ]
})
export class AppModule {}
app.html:
<div style="width:100%; height:350px">
<button (click)="updateLineChart()">Update Line chart</button> DataIndex: {{dataIndex}}
<chartist-chart *ngIf="data" chartistChartClass="ct-chart" chartistChartType="Line" [chartistChartData]="data['simpleLineData']"
[chartistChartOptions]="data['simpleLineOptions']">
</chartist-chart>
</div>
<br/> <br/>
<div style="width:100%; height:350px">
<button (click)="updateBarChart()">Update Bar chart</button> DataIndex: {{dataIndex}}
<chartist-chart *ngIf="data" chartistChartClass="ct-chart" chartistChartType="Bar" [chartistChartData]="data['simpleBarData']"
[chartistChartOptions]="data['simpleBarOptions']">
</chartist-chart>
</div>
chartist.component.ts (child):
import {
Component, ViewChild, Input, Output, ElementRef, EventEmitter, ChangeDetectorRef
} from '@angular/core';
@Component({
selector: 'chartist-chart',
templateUrl: './src/chartistChart.html',
providers: [],
})
export class ChartistChart {
@Input() chartistChartType: string;
@Input() chartistChartData: Object;
@Input() chartistChartOptions: Object;
@Input() chartistChartResponsive: Object;
@Input() chartistChartClass: string;
@Output() onChartReady = new EventEmitter<any>();
@ViewChild('chartistChart') public _selector: ElementRef;
private chart;
constructor(private cdr: ChangeDetectorRef){}
ngAfterViewInit() {
console.log('chart init', this.chartistChartData)
let _self = this;
_self.chart = new Chartist[_self.chartistChartType](_self._selector.nativeElement,
_self.chartistChartData,
_self.chartistChartOptions);
_self.onChartReady.emit(_self.chart);
this.cdr.detectChanges();
}
ngOnChanges(changes) {
if (this.chart) {
console.log('chartistChartData changed: ',this.chartistChartData);
(<any>this.chart).update(this.chartistChartData, this.chartistChartOptions);
}
}
ngOnDestroy(): void {
if (this.chart) {
this.chart.detach();
}
}
}
chartistChart.html:
<div #chartistChart class="{{chartistChartClass || ''}}"></div>
您需要做的就是在每次单击按钮时手动调用 this.getAllCharts()
,以便将 this.data
重新分配给新的数据系列:
public updateLineChart() {
this.dataIndex = this.dataIndex ? 0 : 1;
this.getAllCharts();
}
public updateBarChart() {
this.dataIndex = this.dataIndex ? 0 : 1;
this.getAllCharts();
}
你也可以去掉多余的isFirst
标志,dataIndex
就够了。而且您也不需要手动设置 this.data.simpleBarData
和 this.data.simpleLineData
,因为它已经作为模板中的道具传递。