我有一个需要用户输入的ant脚本。我想确保用户输入了正确的输入类型,如果没有,提示他们输入正确的东西。
<input message="secure-input:" addproperty="the.password" >
</input>
我必须检查输入是否为空,然后我将提示他们重新输入。
在ant输入任务中可能吗?
如果不满足某些条件,大多数条件子句最多允许脚本失败。我想象你正在从用户那里收集一些输入,所以如果用户提供一个空密码,失败可能不是最好的可用性体验,因为他将不得不重新输入所有内容……
此外,仅仅测试一个空字符串似乎是一个糟糕的验证,如果用户提交了一堆空格呢?
我的建议如下:
<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>
所以亮点:
- 使用本地任务为"passwordToValidate"属性设置本地作用域(记住,一旦你在ant脚本上设置了属性,大多数任务不允许你重写它,所以递归会有问题)
- 用脚本测试你的输入(可能添加一些更多的验证)
- 如果测试失败,再次调用目标
- 如果测试成功,将本地作用域属性分配给全局作用域属性
My two cents.
您可以使用条件任务来检查输入是否为空,但您也可以使用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
任务的条件