本文整理匯總了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);
}
);
}
示例2: showToast
showToast(content) {
Toast.show(content, "3000", "bottom").subscribe(
toast => {
console.log(toast);
}
);
}
示例3:
this.commonservice.createTimeout(300).then(() => {
Toast.show(this.commonservice.networkMsg, this.commonservice.networkMsgTime, this.commonservice.networkMsgpos).subscribe(
toast => {
console.log(toast);
}
);
})
示例4: myToast
myToast() {
Toast.show("I'm a toast", 5000, "center").subscribe(
toast => {
console.log(toast);
}
);
}
示例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);
}
);
}
}
示例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);
}
);
}
示例7:
},err=>{
Toast.show(err.error_msg, "2000" , "bottom").subscribe(
toast => {
console.log(toast);
}
);
});
示例8: actuallyShow
private actuallyShow(text) {
if (this.platform.is('cordova')) {
Toast.show(text, '1500', 'bottom').subscribe();
}
else {
console.log(`Toast: ${text}`);
}
}
示例9:
(error) => {
console.log(error)
let msg = "Error Logging In: " + error
Toast.show(msg, "3000", "center");
}
示例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);
}
};