我有一个需要用户输入的 ant 脚本。我想确保用户输入了正确的输入类型,如果没有,提示他们输入正确的内容。
<input message="secure-input:" addproperty="the.password" >
</input>
我必须检查输入是否为空白,然后我会提示他们重新输入。
蚂蚁输入任务有可能吗?
如果不满足某些条件,大多数条件子句最多允许您使脚本失败。我想象你正在从用户那里收集一些输入,所以如果用户提供空密码失败可能不是最好的可用性体验,因为他必须重新输入所有内容......
此外,仅仅测试一个空字符串似乎是一个糟糕的验证,如果用户提交了一堆空格怎么办?
我的(诚然是骇人听闻的)建议如下:
<target name="askPassword">
<local name="passwordToValidate"/>
<input message="secure-input:" addproperty="passwordToValidate"/>
<script language="javascript">
<![CDATA[
passwordToValidate = project.getProperty("passwordToValidate");
//You can add more validations here...
if(passwordToValidate.isEmpty()){
println("The password cannot be empty.");
project.executeTarget('askPassword');
}
]]>
</script>
<property name="the.password" value="${passwordToValidate}"/>
</target>
所以亮点:
我的 2 美分。
您可以使用条件任务检查输入是否不为空,但您也可以使用 antcontrib 添加 if/else 并显示用户适当的消息:
<if>
<not>
<length string="${the.password}" trim="true" when="greater" length="0" />
</not>
</if>
<then>
<echo>Your password is empty!</echo>
</then>
看看条件-condition
任务。