本文整理汇总了TypeScript中ng2-toasty.ToastyService类的典型用法代码示例。如果您正苦于以下问题:TypeScript ToastyService类的具体用法?TypeScript ToastyService怎么用?TypeScript ToastyService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ToastyService类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1:
result => {
if (result.code === CodeConfig.SUCCESS) {
this.toastyService.info('用户 ' + this.user.username + ' 注册成功!!!');
// 跳转到首页
this.router.navigate(['/user/login']);
} else {
this.toastyService.error(ResultUtils.getError(result));
}
}
开发者ID:luoqg,项目名称:wikift,代码行数:9,代码来源:user.register.component.ts
示例2: loginMethod
loginMethod() {
localStorage.setItem('currentUser', JSON.stringify({}));
this.toastyService.default({
title: "Login Try!",
msg: "Logging In....",
showClose: true,
timeout: 5000,
theme: "material"
});
/*this.loading = true;
this.authenticationService.login(this.model.username, this.model.password)
.subscribe(
data => {
this.router.navigate([this.returnUrl]);
},
error => {
this.alertService.error(error);
this.loading = false;
});
}*/
this.ss.change();
debugger;
this.router.navigate(['/home']);
}
开发者ID:satyajittoradmal,项目名称:fibernet,代码行数:26,代码来源:login.component.ts
示例3: switch
this.toastService.toastTriggered.subscribe(toast => {
let toastOptions: ToastOptions = {
title: toast.title,
msg: toast.message,
showClose: true,
timeout: 5000,
theme: 'default'
};
switch (toast.type) {
case 'default': this.toastyService.default(toastOptions); break;
case 'info': this.toastyService.info(toastOptions); break;
case 'success': this.toastyService.success(toastOptions); break;
case 'wait': this.toastyService.wait(toastOptions); break;
case 'error': this.toastyService.error(toastOptions); break;
case 'warning': this.toastyService.warning(toastOptions); break;
default: this.toastyService.default(toastOptions);
}
});
开发者ID:mocking3,项目名称:payAdmin,代码行数:19,代码来源:app.component.ts
示例4:
err => {
CookieUtils.clearBy(CommonConfig.AUTH_USER_NAME);
this.toastyService.error('登录失败, 请检查您的用户名或密码');
return false;
});
开发者ID:luoqg,项目名称:wikift,代码行数:5,代码来源:user.service.ts
示例5: toastWarning
toastWarning(title, msg) {
this.toastyService.warning({
title,
msg,
})
}
开发者ID:beeman,项目名称:loopback-angular-admin,代码行数:6,代码来源:ui.service.ts
示例6: toastWait
toastWait(title, msg) {
this.toastyService.wait({
title,
msg,
})
}
开发者ID:beeman,项目名称:loopback-angular-admin,代码行数:6,代码来源:ui.service.ts
示例7: toastSuccess
toastSuccess(title, msg) {
this.toastyService.success({
title,
msg,
})
}
开发者ID:beeman,项目名称:loopback-angular-admin,代码行数:6,代码来源:ui.service.ts
示例8: toastInfo
toastInfo(title, msg) {
this.toastyService.info({
title,
msg,
})
}
开发者ID:beeman,项目名称:loopback-angular-admin,代码行数:6,代码来源:ui.service.ts
示例9: toastError
toastError(title, msg) {
this.toastyService.error({
title,
msg,
})
}
开发者ID:beeman,项目名称:loopback-angular-admin,代码行数:6,代码来源:ui.service.ts
示例10: toastDefault
toastDefault(title, msg) {
this.toastyService.default({
title,
msg,
})
}
开发者ID:beeman,项目名称:loopback-angular-admin,代码行数:6,代码来源:ui.service.ts
注:本文中的ng2-toasty.ToastyService类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论