本文整理匯總了TypeScript中ionic-native.Toast類的典型用法代碼示例。如果您正苦於以下問題:TypeScript Toast類的具體用法?TypeScript Toast怎麽用?TypeScript Toast使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Toast類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: showToast
showToast(content) {
Toast.show(content, "3000", "bottom").subscribe(
toast => {
console.log(toast);
}
);
}
示例2:
this.commonservice.createTimeout(300).then(() => {
Toast.show(this.commonservice.networkMsg, this.commonservice.networkMsgTime, this.commonservice.networkMsgpos).subscribe(
toast => {
console.log(toast);
}
);
})
示例3: 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);
}
);
}
}
示例4: doNotify
doNotify(message) {
Toast.show(message, '5000', 'center').subscribe(
toast => {
console.log(toast);
}
);
}
示例5:
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);
}
);
}
示例6: myToast
myToast() {
Toast.show("I'm a toast", 5000, "center").subscribe(
toast => {
console.log(toast);
}
);
}
示例7: showToast
showToast() {
Toast.showWithOptions(this.toastOptions).subscribe(
toast => {
console.log(toast);
}
);
}
示例8:
},err=>{
Toast.show(err.error_msg, "2000" , "bottom").subscribe(
toast => {
console.log(toast);
}
);
});
示例9: actuallyShow
private actuallyShow(text) {
if (this.platform.is('cordova')) {
Toast.show(text, '1500', 'bottom').subscribe();
}
else {
console.log(`Toast: ${text}`);
}
}
示例10: addPoke
public addPoke(name: string, sprite: string) {
let pokemon: any = { name: name, sprite: sprite };
this._pokeService.addPokemon(pokemon);
let notify = Toast.showShortBottom(`${name} added to team!`);
notify.subscribe(success => {
console.log(success);
});
}