私はIonic2とAngular2のプロジェクトに取り組んでいます。 ionic serve
を実行しようとすると、エラーなしでデータが取得されます。しかし、iOSでテストしてionic build ios
を実行しようとすると、以下のコンパイル時にエラーが発生します。そのプロパティは存在しません。プロパティがタイプに存在しません
他に誰かがこの問題を抱えていますか?
私は何か提案をいただきありがとうございます。
home.ts
import { Component } from '@angular/core';
import { ProfileService } from './profile.service';
@Component({
selector: 'home',
templateUrl: 'home.html',
providers: [ProfileService]
})
export class HomePage {
constructor(public d: HomeService){
this.loadData();
}
loadData() {
this.d.fbPromise.then((FB) => this.data.getData(FB)).then(response => {
this.data = response;
});
}
}
home.html
<ion-header>
<ion-navbar>
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<div class="profile-content" padding>
<div class="content-header">
<h2 class="name">{{ this.data.name }}</h2>
<div class="interests-content">
<h3>interests</h3>
<span *ngFor="let interest of this.data.interests" >
{{ interest.title }} : {{interest.name}}
</span>
</div>
</div>
</ion-content>
コンパイル時エラー:
[10:10:18] Error: Error at /Users/zzz/Sites/angular-app/Flah/.tmp/pages/home/home.ngfactory.ts:330:47
[10:10:18] Property 'name' does not exist on type 'HomeService'.
[10:10:18] Error at /Users/zzz/Sites/angular-app/Flah/.tmp/pages/home/profhomeile.ngfactory.ts:349:72
[10:10:18] Error at /Users/zzz/Sites/angular-app/Flah/.tmp/pages/home/phomerofile.ngfactory.ts:354:72
[10:10:18] Property 'interests' does not exist on type 'HomeService'.
[10:10:18] ngc failed
[10:10:18] ionic-app-script task: "build"
[10:10:18] Error: Error
すべきですか? –
@GünterZöchbauer、テンプレートを追加しました。 – AnchovyLegend