當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript NavController.push方法代碼示例

本文整理匯總了TypeScript中ionic-angular/index.NavController.push方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript NavController.push方法的具體用法?TypeScript NavController.push怎麽用?TypeScript NavController.push使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ionic-angular/index.NavController的用法示例。


在下文中一共展示了NavController.push方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: addLesson

	addLesson() {
		this.nav.push(LessonFormPage).then(() => {
			// dismissing before the nav.push breaks the "back" button in the next view.
			// https://github.com/driftyco/ionic/issues/6820
			this.viewCtrl.dismiss();
		});
	}
開發者ID:architruc,項目名稱:teacher-agenda,代碼行數:7,代碼來源:add-popover.ts

示例2: openExamDetailPage

 openExamDetailPage() {
   this.nav.push(ExamDetailPage);
 }
開發者ID:lnsoso,項目名稱:growth2,代碼行數:3,代碼來源:index.ts

示例3: openProjectListPage

 openProjectListPage() {
   this.analytics.trackEvent("Discover Page", "project list");
   this.nav.push(ProjectListPage);
 }
開發者ID:MiloJiang,項目名稱:growth,代碼行數:4,代碼來源:index.ts

示例4: openTodoListsPage

 openTodoListsPage() {
   this.analytics.trackEvent("Discover Page", "todo list");
   this.nav.push(TodoListsPage);
 }
開發者ID:MiloJiang,項目名稱:growth,代碼行數:4,代碼來源:index.ts

示例5: openToolboxListPage

 openToolboxListPage() {
   this.analytics.trackEvent("Discover Page", "toolbox");
   this.nav.push(ToolboxListPage);
 }
開發者ID:MiloJiang,項目名稱:growth,代碼行數:4,代碼來源:index.ts

示例6: openRecommendArticlePage

 openRecommendArticlePage() {
   this.analytics.trackEvent("Discover Page", "recommend article");
   this.nav.push(RecommendArticles);
 }
開發者ID:MiloJiang,項目名稱:growth,代碼行數:4,代碼來源:index.ts

示例7: openSolutionPage

 openSolutionPage() {
   this.analytics.trackEvent("Discover Page", "solution");
   this.nav.push(SolutionPage);
 }
開發者ID:MiloJiang,項目名稱:growth,代碼行數:4,代碼來源:index.ts

示例8: openRecommendBookPage

 openRecommendBookPage() {
   this.nav.push(RecommendBook);
 }
開發者ID:louyahui,項目名稱:growth2,代碼行數:3,代碼來源:index.ts

示例9: showHang

 showHang() {
   this.nav.push(HangViewPage, {hang: this.hang});
 }
開發者ID:olore,項目名稱:lets-hang-app,代碼行數:3,代碼來源:hang-view-mini-component.ts

示例10: openSurveyDetails

 openSurveyDetails(survey: Survey) {
   this.nav.push(SurveyDetailsPage, {survey: survey});
 }
開發者ID:packowitz,項目名稱:ask-the-people,代碼行數:3,代碼來源:surveyList.component.ts


注:本文中的ionic-angular/index.NavController.push方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。