Ionic为什么nativeElement未定义?

时间:2018-01-05 14:23:16

标签: javascript angular ionic-framework viewchild

我有一个使用分段的离子应用程序,并且在一个分段上我想要显示谷歌地图。当我们首先加载此段时,它可以工作,但当我转到另一个段并且我想回到谷歌地图段时,我收到一条错误消息。我不知道如何解决这个问题。

  

TypeError:无法读取未定义

的属性“nativeElement”

HTML

<ion-header>
    <ion-toolbar>
      <ion-segment [(ngModel)]="gps" color="light">
        <ion-segment-button value="information" (click)="onInformationClick()">
          <ion-icon name="information-circle"></ion-icon>
        </ion-segment-button>
        <ion-segment-button value="navigate" (click)="onNavigateClick()">
          <ion-icon name="navigate"></ion-icon>
        </ion-segment-button>
        <ion-segment-button value="settings" (click)="onSettingsClick()">
            <ion-icon name="settings"></ion-icon>
          </ion-segment-button>
      </ion-segment>
    </ion-toolbar>
  </ion-header>


<ion-content class="home">
        <div [ngSwitch]="gps" id="contenu">
            <div *ngSwitchCase="'information'"><h1>information</h1></div>


            <div #map id="map" *ngSwitchCase="'navigate'"></div>


            <div *ngSwitchCase="'settings'"><h1>settings</h1></div>
        </div>

</ion-content>

打字稿

import { Component ,ViewChild, ElementRef} from '@angular/core';
import { NavController, Platform} from 'ionic-angular';
import { AndroidPermissions } from '@ionic-native/android-permissions';

declare var SMS:any;
declare var google:any;
@Component({
  selector: 'page-informations',
  templateUrl: 'informations.html'
})
export class InformationsPage {
  //mySMS:any[]=[];
  gps: string = "navigate";
  @ViewChild('map') mapRef:ElementRef;

  constructor(
    public navCtrl: NavController, 
    public androidPermissions: AndroidPermissions, 
    public platform:Platform) 
  {
// constructor 
}
  public onNavigateClick(){
    this.gps = "navigate";
    this.DisplayMap(); 
  }
  public onInformationClick(){
    this.gps = "information";
  }

  public onSettingsClick(){
    this.gps = "settings";
  }
 //Lance l'affichage de la map'

//Définition des paramètre de la map
 DisplayMap() { 
  //Coordonnée de la zone de départ
  const location = new google.maps.LatLng(49.898738,
    1.131385);

  // Options sur la coordonnée de départ
  const options = {
    center:location,
    zoom:19,
    streetViewControl:false,
    mapTypeId:'hybrid'
  };

  // Coordonnées pour chaque points de gps récupéré
  const coordinates =[
    {lat: 80.898613, lng: 1.131438},
    {lat: 80.898501, lng: 1.131355},
    {lat:80.898698, lng: 1.130996},
    {lat: 80.898822, lng: 1.131206}
  ];

  //Option des points de coordonnée gps récupéré
  const flightPath = new google.maps.Polyline({
    path: coordinates,
    geodesic: true,
    strokeColor: '#FBE625',
    strokeOpacity: 1.0,
    strokeWeight: 2
  });

  //Déclaration de la map
  const map = new google.maps.Map(this.mapRef.nativeElement,options);

  //Ajout des points de coordonnées gps récupéré, sur la map
  flightPath.setMap(map);
}
}

2 个答案:

答案 0 :(得分:4)

你试图在完全渲染之前从html中获取值。在ngAfterViewInit内创建一个超时,等待值被渲​​染。

const map;
ngAfterViewInit() {
    console.log("afterinit");
    setTimeout(() => {
      console.log(this.mapRef.nativeElement);
      map = new google.maps.Map(this.mapRef.nativeElement,options);
    }, 1000);
  }

答案 1 :(得分:0)

您可以使用Subject来检测mapRef未定义:

@ViewChild('map') mapRef:ElementRef;
private afterViewInitSubject: Subject<any> = new Subject();

ngAfterViewInit() {
    this.afterViewInitSubject.next(true);
}

DisplayMap() {

    if (this.mapRef) {
        /* ... */
        this.map = new google.maps.Map(this.mapRef.nativeElement,options);
    } else {
        this.afterViewInitSubject.subscribe(() => {
        /* ... */
        this.map = new google.maps.Map(this.mapRef.nativeElement,options);
    });
}