ScrollTo particular item of ListiVew in Ionic 2
问题 I want to scrollTo a particular item in listview in ionic 2. I have a listview which is bound to array. export class TestPage { @ViewChild(Content) content: Content; public items: Array<Object> = []; ionViewWillEnter() { console.log(this.navParams.data); this.customService.getArray(this.params.index).then((items) => { this.items = items; //scroll to item // this.content.scrollTo() }); } } Here is the view: <ion-list [virtualScroll]="items" approxItemHeight="120px" approxItemWidth="100%" class