我有一个密码字段。它检查它是否至少有 8 个字符和属性设置为必需。但是我不希望用户在文本字段中输入任何空格。我怎样才能做到这一点 ?
这是我的声明标签中的验证码:
<mx:StringValidator id="userPasswordValidator"
property="text"
required="true"
minLength="8"
tooShortError="password must at least be 8 characters"
source="{userPassword_field}"/>
我的 MXML 中的文本字段:
<s:TextInput id="userPassword_field" x="73" y="48" width="109" height="21" displayAsPassword="true"/>
请问有人可以告诉我如何验证文本字段中的空格吗?
谢谢 :)