本文整理汇总了TypeScript中ionic-framework/ionic.NavController类的典型用法代码示例。如果您正苦于以下问题:TypeScript NavController类的具体用法?TypeScript NavController怎么用?TypeScript NavController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了NavController类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
(success) => {
console.log('userService.signUp' + JSON.stringify(success));
if (success.status.indexOf('000') == 0) {
let confirm = Alert.create({
title: success.status.substr(4),
buttons: [
{
text: 'Ok',
handler: () => {
//this.nav.popToRoot(); // framework bug
}
}
]
});
this.nav.present(confirm);
}
else
{
let confirm = Alert.create({
title: success.status.substr(4),
buttons: [
{
text: 'Ok' ,
handler: () => {
this.nav.pop(); // framework bug
}
}
]
});
this.nav.present(confirm);
}
},
示例2: goToHome
goToHome(){
if (this.loggedIn()) {
this.nav.setRoot(TabsPage);
} else {
this.nav.setRoot(IntroPage)
}
}
示例3:
finish() {
if(!this._notesService.importNotes(this.content)) {
let d = Alert.create({
title: "Import failed",
message : 'Could not parse the data. Make sure it was copied correctly.',
buttons: ["Ok"]
});
this._nav.present(d);
} else {
this._nav.pop();
}
}
示例4:
doAlert(titulo, texto) {
let alert = Alert.create({
title: titulo,
subTitle: texto,
buttons: ['Ok']
});
this.nav.present(alert);
}
示例5: update
update(){
if (this.task.complete >= 100) {
this.completeTask()
} else {
this._nav.pop()
}
}
示例6: complete
complete() {
if (this.task.completionNote == '') {
let alert = Alert.create({
title: 'Empty completion note',
subTitle: 'Your completion note cannot be empty',
buttons: ['Dismiss']
});
this._nav.present(alert);
} else {
//post completion
this.dismiss()
}
}
示例7: crearServicioCopas
private crearServicioCopas(numCopas: number, numBirras: number,numChupito:number,vector:Array<{tipo:number, hora:Date}>,fecha: string) {
this._copasService.setFechaResaca(fecha);
let nivBorr: number = 0;
let copasTotal = (numBirras/2) + numCopas;
if(copasTotal%3>0){
this._copasService.setContadorBirras(numBirras%3);
this._copasService.setContadorCopas(numCopas%3);
this._copasService.setContadorChupitos(numChupito%3);
}
this._copasService.setBirrasTotales(numBirras);
this._copasService.setCopasTotales(numCopas);
this._copasService.setChupitosTotales(numChupito);
while (copasTotal >= 3) {
nivBorr += 1;
copasTotal = copasTotal-3;
}
this._copasService.setNivelBorrachera(nivBorr);
this._copasService.setDetalleBebido(vector)
this.nav.setRoot(Resacometro);
}
示例8: openLoginPage
openLoginPage() {
this.nav.push(LoginPage);
}
示例9: startWorkout
startWorkout() {
this.nav.push(WorkoutRunnerPage, {});
}