https://angular.io/docs/ts/latest/guide/router.htmlからこのサンプルをフォローしていました
サービスでも同様のリストを作成しようとしていますが、この行を書くと何らかの理由で
servingpatients = Patient[];
私のコンポーネントでは、このエラーが発生しています。それを削除すると、問題は解決します。ただし、これがサンプルで何をしようとしているのかはわかりません。コンソール エラー:
キャッチされていない SyntaxError: 予期しないトークン ]
タイプのコンパイル中の端末エラー
app/dashboard/dashboard.component.ts(35,27):エラー TS1109: 式が必要です
ダッシュボード.コンポーネント.ts
import {Component, OnInit} from 'angular2/core';
import {Patient, DashboardService} from './dashboard.service';
import {Router} from 'angular2/router';
export class DashboardComponent implements OnInit{
servingpatients = Patient[];
constructor(private _service : DashboardService,
private _router: Router){}
ngOnInit(){
this._service.getServingPatients().then(servingpatients => this.servingpatients = servingpatients)
}
}