0
this issueに別の同様の問題がありますが、大文字と小文字が異なります。私はイオンスライドで3つの結果を表示する必要があります、iDangero Swipperは実際に私の問題を解決しますが、私はイオンスライドがthisのようなこともできると信じています。次のコードを確認してください。イオン2:イオンスライドの1つの項目にいくつかの結果を結合します
home.ts:
books: Array<any>;
getBookDB(event, key) {
this._httpService.getBook().subscribe(
data => {
this.books = data = data.results;
console.log(data);
},
err => {
console.log(err);
}
);
}
itemTapped(event, book){
this.navCtrl.push(DetailPage, {
book: book
});
}
サービスプロバイダ:
apikey: string = "XXX";
getBook() {
var url = 'http://localhost:9000/findAll/BookApis/' + this.apikey;
var response = this._http.get(url).map(res => res.json());
return response;
}
と私のイオンスライド:
<ion-slides>
<ion-slide *ngFor="let book of books; let i = index" (click)="itemTapped($event, book)">
<ion-thumbnail item-left>
<img src="{{book.imgUrl}}">
</ion-thumbnail>
<h2>{{book.title}}</h2>
<h3>{{book.author}}</h3>
<p>{{book.category}}</p>
<button ion-button clear item-right>View</button>
</ion-slide>
</ion-slides>
ファイル実際にはそう簡単に、私は、JSONの結果を反復処理機能を使用して機能を返すべきと思いました。ありがとうございました!それは私の問題を解決しました。 –
私は助けてうれしいです。今のところ、公式のIonic 2のドキュメントにはいくつかの部分がありません。時には、githubのソースコードを掘り出して、このコンポーネントの動作を把握しています –
Angular 2を使用しているので、 –