當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript toastr.error函數代碼示例

本文整理匯總了TypeScript中toastr.error函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript error函數的具體用法?TypeScript error怎麽用?TypeScript error使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了error函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: showUINotificationInfo

function showUINotificationInfo(uiNotificationInfo: UINotificationInfo) {
  if (uiNotificationInfo.succeeded) {
    toastr.success(uiNotificationInfo.successMessage);
  } else {
    toastr.error(uiNotificationInfo.errorMessage);
  }
}
開發者ID:Lemoncode,項目名稱:react-typescript-samples,代碼行數:7,代碼來源:uiNotificationMware.ts

示例2: handle

 handle(error:any) {
   if (error.status === 401) {
     toastr.error('Please sign in');
     this.loginService.logout();
     this.router.navigate(['/Login']);
   }
 }
開發者ID:jiguan,項目名稱:mao_client,代碼行數:7,代碼來源:errorHandler.service.ts

示例3: onSubmit

 public onSubmit(): void {
     if (this.registerForm.value.password !== this.registerForm.value.confirmPassword) {
         toastr.error("Passwords don't match");
     } else {
         this.endpoint.register(this.registerForm.value);
     }
 }
開發者ID:FritzH321,項目名稱:winecellar,代碼行數:7,代碼來源:register.container.ts

示例4: error

 static error(err:any) {
     let message = JSON.stringify(err);
     if(err && err.message) {
         message = err.message;
     }
     toastr.error(message);
 }
開發者ID:Resounding,項目名稱:Jobs-Web,代碼行數:7,代碼來源:notifications.ts

示例5: switch

      this.toastsPromise.then((toasts: IToast[]) => {
        for (let t of toasts){
          //Setup callbacks to track dismisal status
          let overrides: ToastrOptions = {
            onclick: () => {
              ToastService.acknowledgeToast(t.Id, this.context.pageContext.web.id);
            },
            onCloseClick: () => {
              ToastService.acknowledgeToast(t.Id, this.context.pageContext.web.id);
            }
          };

          switch (t.Severity){
            case 'Warning':
              toastr.warning(t.Message, t.Title, overrides);
              break;
            case 'Error':
              toastr.error(t.Message, t.Title, overrides);
              break;
            case 'Success':
              toastr.success(t.Message, t.Title, overrides);
              break;
            default:
              toastr.info(t.Message, t.Title, overrides);
              break;
          }
        }
      }).catch((error: any): void => {
開發者ID:AdrianDiaz81,項目名稱:sp-dev-fx-extensions,代碼行數:28,代碼來源:SpfxToastrApplicationCustomizer.ts

示例6: handleError

 private handleError(error:Response) {
   let _error = error.json();
   console.log(error);
   console.error(_error);
   toastr.error(_error.message);
   return Observable.throw(_error.error || 'Server error');
 }
開發者ID:G-MontaG,項目名稱:Chat,代碼行數:7,代碼來源:dashboard.service.ts

示例7: login

 login(loginCredentials).then((response) => {
   if (response.succeded) {
     dispatch(loginRequestSuccessAction(response));
     navigationHelper.navigateToPath(`/${response.userProfile.role}`);
   } else {
     toastr.error(loginErrorMessages.credentials);
   }
 });
開發者ID:MasterLemon2016,項目名稱:LeanMood,代碼行數:8,代碼來源:loginRequest.ts

示例8: handleError

 private handleError(error) {
   switch (error.status) {
     case 400:
       if (error.json()['code'] === 'email_already_taken') {
         toastr.error('This email is already taken.');
       }
   }
 }
開發者ID:gtostock,項目名稱:angular2-app,代碼行數:8,代碼來源:SignupPage.ts

示例9: showError

function showError(err) {
    let errorMessage = err;

    if (_.isError(err)) {
        errorMessage = err.message;
    }

    toastr.error(errorMessage);
}
開發者ID:Blocklevel,項目名稱:contoso-express,代碼行數:9,代碼來源:uiHelper.ts

示例10: handleError

	private handleError (error: any) {
		// In a real world app, we might send the error to remote logging infrastructure
		let errMsg = error._body || 'Server error';
		console.error(errMsg); // log to console instead

		if (error.status >= 500) {
			toastr.error('An error has occured. Please contact support for further assistance');
		} else {
			toastr.warning(errMsg);
		}
		return Observable.throw(errMsg);
	}
開發者ID:SamGraber,項目名稱:BankGame,代碼行數:12,代碼來源:request.service.ts


注:本文中的toastr.error函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。