4Manuals

  • PDF Cloud HOME

角垫表在单击后不会更新 Download

    具有Iframe表单的HTML文件,使用框架外的按钮通过JQuery提交表单按钮 CSS / JS-如何覆盖一个孩子而不是其他孩子的父母过渡 反应:更改方向后触发重新渲染和offsetWidth的重新计算 我的Javascript从'string'转换为'integer'或'number'无效 CSS在像素中设置多个颜色渐变? 创建一个没有固定布局的HTML表,设置最大宽度,并且行不换行但溢出:隐藏 如何将动态模板引用Click事件绑定到跨度? 如何删除外部索引并合并内部json 在React Native 图片无法通过javascript刷新

您好,我订阅了检索特定站点所有详细信息的服务后,我的mat-table无法更新。我有一个结构,该结构由一个父组件(DepotSelectionComponent)和两个子组件InteractiveMapComponent,MapResultComponent组成。我正在从InteractiveMapComponent检索click事件,该事件已冒泡到父级(DepotSelectionComponent),然后该父级调用该服务,然后更新MapResultComponent中的数据源。

当前行为:

表在单击时不会更新,只会在我单击InteractiveMapComponent中的“后退”按钮时更新,这对我来说没有意义。

预期行为:

点击后表格会更新,表格会立即更新。

Parent(DepotSelectionComponent)TS:

*

Parent(DepotSelectionComponent)html:

import { Component, OnInit, ViewChild, NgZone } from '@angular/core';
import { MapResultComponent } from '../map-result/map-result.component';
import { InteractiveMapComponent } from '../interactive-map/interactive-map.component';
import { SiteService } from '../shared/services/site-service';
import { siteDetails } from '../shared/interfaces/site-details.interface';
import { MatTableDataSource } from '@angular/material';

@Component({
  selector: 'app-depot-selection',
  templateUrl: './depot-selection.component.html',
  styleUrls: ['./depot-selection.component.scss']
})
export class DepotSelectionComponent implements OnInit {

  page:string;
  countyName: string;
  @ViewChild(MapResultComponent, {static: false})
  private MapResultComponent: MapResultComponent;

  constructor(private zone: NgZone,
    private _siteService: SiteService) { }

  ngOnInit() {
    this.page = "siteLandingPage";
  }

  home() {
    this.page = "siteLandingPage";
  }

  getDetailsPage() {
    this.page = "siteMoreDetails";
  }

  depotMoreDetails() {
    this.page = "depotMoreDetails"
  }

  populateResults(countyName) {
    this.MapResultComponent.mapResultHeader = countyName.dataObj.label;
    this.MapResultComponent.siteResults.length = 0;
    this._siteService.getSites(countyName.dataObj.label)
    .subscribe((data: any[]) => {
      data.forEach(e => {
      this.MapResultComponent.siteResults.push(new siteDetails(e.Site_ID, e.Address1, e.Address2, e.Town, e.County, e.PostCode, e.Name, e.Description, e.TelephoneNumber));
      })     
    }); 

  this.MapResultComponent.dataSource = new MatTableDataSource(this.MapResultComponent.siteResults);   
  console.log(this.MapResultComponent.dataSource)
}

}

Child(InteractiveMapComponent)TS:

  <div class="main">  

    <div [ngSwitch]="page">

        <div *ngSwitchCase="'siteLandingPage'">
            <div class="interactiveMap">
                <app-interactive-map (siteDetailTable)="populateResults($event)"></app-interactive-map>
            </div>
            <div class="mapResult">
                <app-map-result (moreDetails)="getDetailsPage($event)"></app-map-result>
            </div>
        </div>

        <div *ngSwitchCase="'siteMoreDetails'">
            <div>
                <button mat-raised-button (click)="home()">Back</button>
            </div>
            <div class="clearFloat"></div>
            <app-site-details (depotMoreDetails)="depotMoreDetails($event)"></app-site-details>
        </div>

        <div *ngSwitchCase="'depotMoreDetails'">
            <div>
                <button mat-raised-button (click)="getDetailsPage()">Back</button>
            </div>
            <div class="clearFloat"></div>
            <app-depot-parent></app-depot-parent>
        </div>
    </div>

</div>

Child(InteractiveMapComponent)html:

import { Component, OnInit, NgZone, EventEmitter, Output, ChangeDetectorRef } from '@angular/core';
import { FusionCharts } from 'fusioncharts';
import { InteractiveMapService } from './interactive-map.service';
import { Observable } from 'rxjs/Rx';
import { CountyDetails } from './county-details.interface';

@Component({
  selector: 'app-interactive-map',
  templateUrl: './interactive-map.component.html',
  styleUrls: ['./interactive-map.component.scss']
})

export class InteractiveMapComponent implements OnInit {

  dataSource: Object;
  map: string;
  mapType:string;
  FusionCharts: FusionCharts;
  test: Array<{id: string, value: string, color: string}> = [];

  @Output() siteDetailTable = new EventEmitter();

  constructor(private _interactiveMapService: InteractiveMapService,
    private zone: NgZone) { }

  ngOnInit() {   
    this.getUKMapData();

    this.mapType = "Site Locations";

    this.dataSource = {
      chart: {
        includevalueinlabels: "1",
        labelsepchar: ": ",
        entityFillHoverColor: "#EE204D",
        theme: "fint",
      }, 
      // Source data as JSON --> id represents counties of england.
      data : this.test,   
    };

  }

  ukMap() {
   this.mapType = "Site Locations";
   this.getUKMapData();
  }

  selectMap(map) {
    switch(map) {
      case "England":
          this.getEnglandMapData();
          this.mapType="England";
      break;

      case "Wales":
        this.getWalesMapData();
        this.mapType="Wales";
      break;

      case "Scotland":
          this.getScotlandMapData();
          this.mapType="Scotland";
      break;

      case "North Ireland":
          this.mapType="Northern Ireland";
      break;

      default:
        ;
    }
  }

  getGBMapData() {  
    this.test.length = 0;   
    this._interactiveMapService.getGBMapData()
    .subscribe((data: any[]) => {
      data.forEach(e => {
        this.test.push(new CountyDetails(e.Map_Data_ID.toString(), e.County, e.Color))    
      })
    })
  }

  getUKMapData() {
    this.test.length = 0;
    this._interactiveMapService.getUKMapData()
    .subscribe((data: any[]) => {
      data.forEach(e => {
        this.test.push(new CountyDetails(e.Map_Data_ID.toString(), e.Country, e.Color));      
      }) 
    });
  }

  getScotlandMapData() {
    this.test.length = 0;
    this._interactiveMapService.getScotlandMapData()
    .subscribe((data: any[]) => {
      data.forEach(e => {
        this.test.push(new CountyDetails(e.Map_Data_ID.toString(), e.County, e.Color));
      })
    })
  }

  getWalesMapData() {
    this.test.length = 0;
    this._interactiveMapService.getWalesMapData()
    .subscribe((data: any[]) => {
      data.forEach(e => {
        this.test.push(new CountyDetails(e.Map_Data_ID.toString(), e.County, e.Color));
      })
    })
  }

  getEnglandMapData() {
    this.test.length = 0;
    this._interactiveMapService.getEnglandMapData()
    .subscribe((data: any[]) => {
      data.forEach(e => {
        this.test.push(new CountyDetails(e.Map_Data_ID.toString(), e.County, e.Color));
      })
    })
  }

  populateResultsTable(event: string) { 
    this.siteDetailTable.emit(event);
  }

  update($event) {
    // Run inside angular context
    this.zone.run(() => {
      this.selectMap($event.dataObj.label);
    })
  }

}

Child(MapResultComponent)TS:

    <div class="mapContainer">
    <div class="interactiveMapHeader">
        <span>{{mapType}}</span>
        <div *ngIf="mapType != 'Site Locations'">
            <button mat-raised-button (click)="ukMap()">Back</button>
        </div>
    </div>

    <div [ngSwitch]="mapType">
        <div *ngSwitchCase="'Scotland'">
            <fusioncharts
            width = "500"
            height = "900"
            type="maps/scotland"
            [dataSource]="dataSource"
            (entityClick)="populateResultsTable($event)"
            >
            </fusioncharts>
        </div>

        <div *ngSwitchCase="'Wales'">
            <fusioncharts
            width = "500"
            height = "900"
            type="maps/wales"
            [dataSource]="dataSource"
            (entityClick)="populateResultsTable($event)"
            >
            </fusioncharts>
        </div>

        <div *ngSwitchCase="'England'">     
            <fusioncharts
            width = "500"
            height = "900"
            type="maps/england"
            [dataSource]="dataSource"
            (entityClick)="populateResultsTable($event)"
            >
            </fusioncharts>
        </div>

        <div *ngSwitchCase="'Northern Ireland'">
            <fusioncharts
            width = "500"
            height = "900"
            type="maps/northernireland"
            [dataSource]="dataSource"
            (entityClick)="populateResultsTable($event)"
            >
            </fusioncharts>
        </div>

        <div *ngSwitchDefault>
            <fusioncharts
            width = "500"
            height = "1000"
            type="maps/uk7"
            [dataSource]="dataSource"
            (entityClick)="update($event)"
            >
            </fusioncharts>
        </div>
    </div>          

</div>

Child(MapResultComponent)html:

import { Component, OnInit, ViewChild, Output, EventEmitter, ChangeDetectorRef, Input, NgZone } from '@angular/core';
import { MatTableDataSource, MatPaginator, MatDialogConfig, MatDialog } from '@angular/material';
import { NewSiteDialogComponent } from '../new-site-dialog/new-site-dialog.component';
import { siteDetails } from '../shared/interfaces/site-details.interface';
import { SiteService } from '../shared/services/site-service';

@Component({
  selector: 'app-map-result',
  templateUrl: './map-result.component.html',
  styleUrls: ['./map-result.component.scss']
})
export class MapResultComponent implements OnInit {

  displayedColumns: string[] = ['name', 'address1', 'moreDetails'];
  number: number;
  mapResultHeader: string;
  result : string;
  mapResults: Array<{name: string, address: string}> = [];
  dataSource : MatTableDataSource<any>;
  siteResults: Array<{Site_ID: number, Address1: string, Address2: string, Town: string, County: string, PostCode: string, Name: string, Description: string, TelephoneNumber: string}> = [];

  @Output() moreDetails = new EventEmitter();

  @ViewChild(MatPaginator, {static: true}) paginator: MatPaginator;

  constructor(public dialog: MatDialog,
    private _siteService: SiteService) {
  }

  loadMoreDetailsComp(changed: string) {
    this.moreDetails.emit(changed);
  }

  ngOnInit() {
    this.dataSource = new MatTableDataSource();
    this.mapResultHeader = "Kent";
  }

    /**
   * Set the paginator and sort after the view init since this component will
   * be able to query its view for the initialized paginator and sort.
   */
  ngAfterViewInit() {
    this.dataSource.paginator = this.paginator;
  }

  applyFilter(filterValue: string) {
    this.dataSource.filter = filterValue.trim().toLowerCase();
  }

  openNewSiteDialog(){
    const dialogConfig = new MatDialogConfig();

    dialogConfig.autoFocus = true;
    dialogConfig.disableClose = true;

    this.dialog.open(NewSiteDialogComponent, dialogConfig);
  }

}

export interface Data {
  name: string;
  town: string;
  address: string;
  telephone: string;
}

我对此感到很困惑,我认为它与异步行为有关,但我无法弄清楚

1 个答案:

答案 0 :(得分:1)

好像数据源是在订阅块之外设置的,这导致它在加载数据之前被设置。您应该只需要像下面那样将该行向上移动到订阅块中即可:

populateResults(countyName) {
    this.MapResultComponent.mapResultHeader = countyName.dataObj.label;
    this.MapResultComponent.siteResults.length = 0;
    this._siteService.getSites(countyName.dataObj.label)
        .subscribe((data: any[]) => {
            data.forEach(e => {
                this.MapResultComponent.siteResults.push(new siteDetails(e.Site_ID, e.Address1, e.Address2, e.Town, e.County, e.PostCode, e.Name, e.Description, e.TelephoneNumber));
            });
            this.MapResultComponent.dataSource = new MatTableDataSource(this.MapResultComponent.siteResults);
        });
}

如果您收到“更改检测后x值已更改”错误,则之后可能还需要changeDetectorRef.detectChanges()调用,因为这似乎是一连串的更新。



Similar searches
    如何使用scala-js和Scalatags构建dom并在元素上调用javascript 如何确保始终打开至少1个手风琴? 敌人中的AI,Unity 2D 带有JOptionPane的ImageIcon没有出现在可执行JAR中 如何在单击超链接的Javscript中打开PDF文件?