当前位置: 首页>>代码示例>>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;未经允许,请勿转载。