本文整理汇总了TypeScript中ionic-angular/index.ViewController类的典型用法代码示例。如果您正苦于以下问题:TypeScript ViewController类的具体用法?TypeScript ViewController怎么用?TypeScript ViewController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ViewController类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(private viewController:ViewController) {
this.video_url = this.viewController.getNavParams().data.video_url;
}
示例2: constructor
constructor(private viewController:ViewController) {
this.images = this.viewController.getNavParams().data.images;
}
示例3: close
close(){
this.viewController.dismiss();
}
示例4:
posts.push(this.newPost).then(res=>{
loading.destroy();
this.viewCtrl.dismiss();
});
示例5: cancel
cancel() {
this.viewCtrl.dismiss();
}
示例6:
resendVerificationEmail() {
// TODO
console.log("TODO: Must re-send verification email");
this.viewCtrl.dismiss();
}
示例7:
this.nav.push(PayFormPage).then(() => {
this.viewCtrl.dismiss();
});