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


TypeScript NavController.present方法代碼示例

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


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

示例1: presentStatusModal

 presentStatusModal() {
   let statusModal = Modal.create(StatusModalPage, { player: this.player });
   this.nav.present(statusModal);
 }
開發者ID:pmaclellan,項目名稱:ChemCaravan,代碼行數:4,代碼來源:settlement-page.ts

示例2: addPaymentItem

 addPaymentItem(event) {
   this.navCtrl.present(Modal.create(PaymentItemFormPage, {
     purchase: this.purchase,
     people: this.people
   }));
 }
開發者ID:victorlcampos,項目名稱:dividaBem,代碼行數:6,代碼來源:purchase-form.ts

示例3: initLoadingAnimation

 initLoadingAnimation() {
   this.loading = Loading.create({
     content: 'Loading agenda items...'
   })
   this.nav.present(this.loading)
 }
開發者ID:dougestey,項目名稱:adroit,代碼行數:6,代碼來源:agenda.ts

示例4: showModal

 showModal(){
   console.log("test");
   let modal = Modal.create(Details);
   this.navContoller.present(modal);
 }
開發者ID:DanielPFreitas,項目名稱:appleInn,代碼行數:5,代碼來源:home.ts

示例5:

 }, error => {
   t.setMessage('No se pudo guardar los datos de contacto, intente nuevamente!');
   this.nav.present(t);
 });
開發者ID:sclMAX,項目名稱:IndumaticsApp,代碼行數:4,代碼來源:usuario.ts

示例6: openRegisterPage

 //打開注冊窗口
 openRegisterPage(){
   let modal = Modal.create(Register);
   this.nav.present(modal)
 }
開發者ID:zhangxianmeng,項目名稱:ionicDemo,代碼行數:5,代碼來源:login.ts

示例7: showLoading

	showLoading() {
		this.loading = Loading.create({
			content: 'Aguarde...'
		});
		this.nav.present(this.loading);
	}
開發者ID:lgmbarata,項目名稱:eCondominio,代碼行數:6,代碼來源:login.ts

示例8:

			  ngz.run(() => {
			    let modal = Modal.create(DetailModal, {gallery: galleryMatch});
			    nav.present(modal);
			  })
開發者ID:mattrothenberg,項目名稱:galileo,代碼行數:4,代碼來源:map.ts

示例9: showAboutModal

 /*
 * Shows the about modal
 */
 showAboutModal() {
   let modal = Modal.create(AboutModal);
   this.nav.present(modal)
 }
開發者ID:candelibas,項目名稱:thecullinguide,代碼行數:7,代碼來源:dashboard.ts

示例10: setTimeout

 setTimeout(() => {
     let modal = Modal.create(MyModal, { pokemon: poke });
     this.nav.present(modal);
 }, 500)
開發者ID:jgw96,項目名稱:IonDex,代碼行數:4,代碼來源:page1.ts


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