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


TypeScript Toast.show方法代碼示例

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


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

示例1: doNotify

 doNotify(message) {
   Toast.show(message, '5000', 'center').subscribe(
     toast => {
       console.log(toast);
     }
   );
 }
開發者ID:murac,項目名稱:gif-stick,代碼行數:7,代碼來源:notify.ts

示例2: showToast

 showToast(content) {
   Toast.show(content, "3000", "bottom").subscribe(
     toast => {
       console.log(toast);
     }
   );
 }
開發者ID:artman202,項目名稱:tangent-app,代碼行數:7,代碼來源:project-detail.ts

示例3:

 this.commonservice.createTimeout(300).then(() => {
   Toast.show(this.commonservice.networkMsg, this.commonservice.networkMsgTime, this.commonservice.networkMsgpos).subscribe(
     toast => {
       console.log(toast);
     }
   );
 })
開發者ID:tejit2004,項目名稱:app,代碼行數:7,代碼來源:service-result.ts

示例4: myToast

 myToast() {
     Toast.show("I'm a toast", 5000, "center").subscribe(
             toast => {
             console.log(toast);
         }
     );
 }
開發者ID:Muhammadmavia,項目名稱:ITKA,代碼行數:7,代碼來源:camera.ts

示例5: setMarker

setMarker(){
  //primero validamos que tengamos los datos de la localización
  if(this.latLng){

    //De esta forma estamos colocando el marker en la posicion de nuestra ubicación, con el titulo ‘Mi posición’
    let markerOptions: GoogleMapsMarkerOptions = {
      position: this.latLng,
      title: 'Mi posición'
    };

    //Luego lo agregamos al mapa, y una vez agregado llamamos la función showInfoWindow() para mostrar el título señalado anteriormente.

    this.map.addMarker(markerOptions)
      .then((marker: GoogleMapsMarker) => {
        marker.showInfoWindow();
    });
  }else{

    //En caso de no obtener la ubicación es bueno señalar al usuario porque no se mostró el marker
    Toast.show("No se ha podido obtener su ubicación", '5000', 'bottom').subscribe(
      toast => {
        console.log(toast);
      }
    );
  }
}
開發者ID:rexmax97,項目名稱:optimit,代碼行數:26,代碼來源:home.ts

示例6:

			  error => {
			      Toast.show("Post request failed. Ensure that your device and the server are online and that your access token is valid.", '7000', 'center').subscribe(
				  toast => {
				      console.log("Toast:" + toast);
				  }
			      );
			  }
開發者ID:mdash-ursi2016,項目名稱:ionic_code_typescript,代碼行數:7,代碼來源:httpservice.ts

示例7:

 },err=>{
   Toast.show(err.error_msg, "2000" , "bottom").subscribe(
     toast => {
       console.log(toast);
     }
   );
 });
開發者ID:XueRainey,項目名稱:Ioniclub,代碼行數:7,代碼來源:topics.service.ts

示例8: actuallyShow

 private actuallyShow(text) {
   if (this.platform.is('cordova')) {
     Toast.show(text, '1500', 'bottom').subscribe();
   }
   else {
     console.log(`Toast: ${text}`);
   }
 }
開發者ID:ActiverLtd,項目名稱:Mobile,代碼行數:8,代碼來源:toast.service.ts

示例9:

 (error) => {
     console.log(error)
     let msg = "Error Logging In: " + error
     Toast.show(msg, "3000", "center");
 }
開發者ID:aaronksaunders,項目名稱:ionic2-tabs-login-sample,代碼行數:5,代碼來源:login.ts

示例10: toast

import {Toast} from 'ionic-native';

export const Mixins = {
  toast(msg, duration = 'long', position = 'bottom') {
    Toast.show(msg, duration, position).subscribe(toast => {}, error => {}, () => {});
  },
  toastAPIError(err, duration = 'long', position = 'bottom') {
    Mixins.toast(err.message || err.ERR_MSG || '未知錯誤,請稍後重試', duration, position);
  }
};
開發者ID:baijiadu,項目名稱:auktionator,代碼行數:10,代碼來源:mixins.ts


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