本文整理汇总了TypeScript中angular2-materialize.toast函数的典型用法代码示例。如果您正苦于以下问题:TypeScript toast函数的具体用法?TypeScript toast怎么用?TypeScript toast使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了toast函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: function
navigator.geolocation.getCurrentPosition( function (position) {
var lat = position.coords.latitude;
var lng = position.coords.longitude;
let file = this.selectFiles.item(0);
this.currentUpload = new Upload(file);
this.mascotasService.agregarMascota(lat,lng,this.descripcion, this.recompensa, this.telefono, this.currentUpload, this.userId);
toast("Datos guardados.", 4000);
this.procesando = false;
this.router.navigateByUrl("/inicio");
}.bind(this));
开发者ID:joshua1983,项目名称:lostpet,代码行数:10,代码来源:reportar.component.ts
示例2: runTest
runTest() {
console.log('runtest');
let flag = (localStorage.getItem('testInfo') ? 1 : -1);
console.log(flag);
console.log(this.status);
console.log('blabla');
if (this.status === 'run' && flag === 1) {
this.router.navigate(['/runTest', 'user']);
} else if (this.status === 'available' && flag === -1) {
this.router.navigate(['/runTest', 'user']);
} else {
toast('Sorry, you did something wrong', 5000, 'orange');
}
}
开发者ID:AntonGrigoriev,项目名称:3group,代码行数:15,代码来源:user.component.ts
示例3: handleError
handleError(error) {
toast('Failed to add questions', 3000, 'red darken-2');
}
开发者ID:AntonGrigoriev,项目名称:3group,代码行数:3,代码来源:add-question.component.ts
示例4: toast
res => {
toast('All questions were successfully added', 3000, 'green');
this.questionsList = [];
},
开发者ID:AntonGrigoriev,项目名称:3group,代码行数:4,代码来源:add-question.component.ts
注:本文中的angular2-materialize.toast函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论