Struts 1.1 validation.xml:myList.size() == 0。如何检查这一点
我遇到的情况是 JobTitle 列表的长度可以为 0,如果是这样,则不应验证字段 jobTitleId。
<field property="jobTitleId" depends="validwhen">
<msg name="required" key="errors.required" />
<arg position="0" key="fld.job.title" />
<var>
<var-name>test</var-name>
<var-value>((jobTitles.size() == 0) or (*this* != null))</var-value>
</var>
</field>
任何帮助都将不胜感激。我已经尝试过开发人员文档,但我只是不明白。
I have a situation where a list of JobTitles can have 0 length, and if it does, the field jobTitleId should not be validated.
<field property="jobTitleId" depends="validwhen">
<msg name="required" key="errors.required" />
<arg position="0" key="fld.job.title" />
<var>
<var-name>test</var-name>
<var-value>((jobTitles.size() == 0) or (*this* != null))</var-value>
</var>
</field>
Any help would certainly be appreciated. I've tried the developer docs and I'm just not getting it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然 .size() 引起了麻烦,所以我更改了代码,以便在这种情况下 jobTitles 将为空,并且它有效。
Apparently the .size() was causing the trouble, so I changed the code so that jobTitles would be null in that case and it worked.