本文整理汇总了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);
});
}