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


TypeScript common.ControlGroup類代碼示例

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


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

示例1: passwordsMustMatch

  static passwordsMustMatch(group: ControlGroup){
    var newpw = group.find('newpassword');
    var confirmpw = group.find('confirmpassword');
    if (newpw.value !== confirmpw.value)
      return	{passwordsMustMatch: true};

    return null;
  }
開發者ID:code-matt,項目名稱:practice,代碼行數:8,代碼來源:passwordValidators.ts

示例2: unmatchingPasswords

 static unmatchingPasswords(cg: ControlGroup) {
   var newPasswordValue = cg.find('newPassword').value;
   var confirmPasswordValue = cg.find('confirmPassword').value;
   if(newPasswordValue !== confirmPasswordValue) {
     return { unmatchingPasswords: true };
   }
   return null;
 }
開發者ID:fox-eye,項目名稱:angular2-udemy-mosh,代碼行數:8,代碼來源:password-validators.ts

示例3: shouldMatchWith

    static shouldMatchWith(group: ControlGroup) {
        const newPassword = group.find('newpass').value;
        const confirmPassword = group.find('confirm').value;

        if (newPassword !== confirmPassword) {
            return { shouldMatchWith: true };
        }
        return null;
    }
開發者ID:kobvel,項目名稱:ng2-pragmatic-guide-lessons,代碼行數:9,代碼來源:confirmValidators.ts

示例4: shouldBeSame

    static shouldBeSame(group: ControlGroup){
        var newPassw = group.find('new_password');
        var confPassw = group.find('confirm_password');
        if(newPassw.value != confPassw.value ){
            return { shouldBeSame: true };
        }

        return null;
    }
開發者ID:fscbest,項目名稱:angular2-seed,代碼行數:9,代碼來源:passwordValidators.ts

示例5: shouldBeEqual

 static shouldBeEqual (group: ControlGroup){
     var newpass = group.find('newpass');
     var confirmpass= group.find('confirmpass');
     
     if(newpass.value != confirmpass.value){
         return {shouldBeEqual: true}
     }
            
     return null;
 }
開發者ID:cristianmurillo87,項目名稱:cursoAngular2,代碼行數:10,代碼來源:usernameValidators.ts

示例6: shouldBeEqual

 static shouldBeEqual (group: ControlGroup){
     var newpass = group.find('newpass').value;
     var confirmpass= group.find('confirmpass').value;
     
     if(confirmpass.length >0 && newpass.length >0 && newpass != confirmpass){
         return {shouldBeEqual: true}
     }
            
     return null;
 }
開發者ID:cristianmurillo87,項目名稱:cursoAngular2,代碼行數:10,代碼來源:passwordValidator.ts

示例7: passwordMustMatch

    static passwordMustMatch(group: ControlGroup) {
        var newPwd = group.find('newPwd').value;
        var confirmPwd = group.find('confirmPwd').value;

        if (newPwd != confirmPwd)
            return {passwordMustMatch: true};

        return null;

    }
開發者ID:kamillacrozara,項目名稱:angular2-startapp,代碼行數:10,代碼來源:ChangePasswordValidators.ts

示例8: matchPassword

 public static matchPassword(controlGroup: ControlGroup){ 
     var newPassword = controlGroup.find("newPassword").value;
     var confirmPassword = controlGroup.find("confirmPassword").value;                    
     if ((newPassword && confirmPassword) && (newPassword !== confirmPassword)){
         return {'match': true};
     } 
     else {
         return null;
     }
 }
開發者ID:hrbcksq,項目名稱:angular-dua,代碼行數:10,代碼來源:passwordValidators.ts

示例9: resetPassword

 resetPassword() {
     console.log(this.form.value);
     if (this.form.find('currentPassword').value != '1234') {
         this.form.find('currentPassword').setErrors({
             invalidPassword: true
         })
     }
 }
開發者ID:MahmoudHboubati,項目名稱:AngularJS2-Cources,代碼行數:8,代碼來源:reset-password-form.component.ts

示例10: signup

    signup() {
        if(this.form.find('currentPw').value=="1234")
            alert("password changed succesfully");
        else
            this.form.find('currentPw').setErrors({
                incorrectPw: true
            });

        console.log(this.form.value);
    }
開發者ID:ildoc,項目名稱:appunti,代碼行數:10,代碼來源:changepw-form.component.ts


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