如何测试jsp属性类型
我有带有用户设置的 Spring MVC 应用程序。设置是带有字符串“名称”、“值”、“用户”和“类型”字段的对象。 要编辑值,会生成带有表格的表单,并且值是可编辑的字符串。
对于在字段类型中具有值复选框的设置,我想显示复选框,即:
<c:if test="setting.type=='checkbox'">
<form:checkbox path="setting.name" />
</c:if>
我无法弄清楚。有什么建议吗?
I have Spring MVC app with user settings. Settings are objects with strings Name, Value, User and Type field.
To edit values form with table is generated and Values are editable strings.
For Settings that have value checkbox in field Type, I would like display checkbox, ie:
<c:if test="setting.type=='checkbox'">
<form:checkbox path="setting.name" />
</c:if>
I cannot figure it out. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试改变
吗
?
当然,“设置”对象必须正确传递给jsp。
did you try to change
to
?
of course, the 'setting' object must be passed to jsp correctly.
你尝试了吗? :
Did you try ? :