0

我有一个简单的登录表单,用户在其中输入 userSAP no(必须是数字)和密码(最少 8 个字符)。我已经对每个字段进行了验证。我想在将状态从 LoginMode_Default 更改为 PerviewMode 状态之前检查验证是否首先通过。用户登录后,它会向用户显示欢迎消息。

在我的代码中,当用户单击登录按钮时,我调用 validateLogin() 函数来检查字段是否有效。如果有效,则将 currentState 设置为 PerviewMode 状态。

在 PerviewMode 中,用户可以单击注销,这会调用 logoff() 函数返回到 LoginMode_Default 状态。

但是,当我单击注销链接时,它会返回登录表单,但 userId 和 password 字段是红色的。我怎样才能回到登录表单而不使字段被勾勒为红色?我做得对吗?有没有更好或更正确的方法来做到这一点?请问有人可以帮我吗?谢谢:)

我的验证码

    <fx:Declarations>       
    <s:NumberValidator id="userSAPValidator" 
                       property="text" 
                       required="true"
                       domain="int"
                       notAnIntegerError="Should not conatin any decimal"
                       allowNegative="false"
                       negativeError="Should not contain negative values"
                       parseError="Enter only numbers without space"
                       source="{userSAP_field}"/>   

    <mx:StringValidator id="userPasswordValidator"                          
                        property="text"                                                     
                        required="true"                         
                        minLength="8"                           
                        tooShortError="password must at least be 8 characters"
                        source="{userPassword_field}"/>         
</fx:Declarations>

我在 MXML 中的状态:

<s:states> 
    <s:State name="LoginMode_Default"/> 
    <s:State name="PerviewMode"/>   
</s:states> 

我的登录表单 MXML :

     <s:BorderContainer id="login_BC" x="1" y="1" width="223" height="134"
                           x.LoginMode_Default="2" y.LoginMode_Default="9"
                           height.LoginMode_Default="152" height.PerviewMode="40">


               <s:Form id="loginForm" x="5" y="7" width="212" height="133"
                    x.LoginMode_Default="4" y.LoginMode_Default="5" excludeFrom="PerviewMode">  
                   <s:layout>
                       <s:BasicLayout/>
                   </s:layout>                 
                   <s:Label x="0" y="14" width="52" height="18" text="SAP no :" paddingTop="5"/>                           
                   <s:TextInput id="userSAP_field" x="74" y="10" width="108"/>
                   <s:Label x="0" y="52" text="Password :" paddingTop="5"/> 
                   <s:TextInput id="userPassword_field" x="73" y="48" width="109" height="21" displayAsPassword="true"/>                       
                <s:Button id="loginButton" x="6" y="82" label="Login" click="validateLogin()" />                          
            </s:Form>

            <s:HGroup includeIn="PerviewMode" width="245" height="41">
                <s:Label id="welcome_text" text="Welome your name" paddingTop="12"  paddingLeft="10"/>
                <mx:LinkButton label="logout" click="logOff()" paddingTop="6"/>                 
            </s:HGroup> 

        </s:BorderContainer>

我的验证登录功能:

private function validateLogin():void {

var vResult1:ValidationResultEvent;
var vResult2:ValidationResultEvent;

vResult1 = userPasswordValidator.validate();
vResult2 = userSAPValidator.validate();

if (vResult1.type==ValidationResultEvent.VALID && vResult2.type == ValidationResultEvent.VALID ) {      
    this.currentState = "PerviewMode";

}
else{       
    this.currentState = "LoginMode_Default";        
}

}

我的注销功能:

private function logOff():void {
this.currentState = "LoginMode_Default";
userPassword_field.text ="";
userSAP_field.text =""; 

}

4

2 回答 2

0

当您更改 textinput 文本时,验证器会检查值。尝试关闭所需的选项,然后清除文本输入:

private function logOff():void {
        this.currentState = "LoginMode_Default";

        userSAPValidator.required = false;
        userPasswordValidator.required = false;

        userSAP_field.text =""; 
        userPassword_field.text ="";

        userSAPValidator.required = true;
        userPasswordValidator.required = true;
}
于 2013-03-04T08:49:48.587 回答
0

尝试添加

userSAP_field.errorString = '';
userPassword_field.errorString = '';

到你的logOff()功能。

于 2013-03-04T08:16:04.897 回答