Spring Web Flow 设置表单输入值
我在为 Spring 表单输入字段分配默认值时遇到问题。这是我的代码
<form:form method="post" modelAttribute="employeeDirectoryInfo">
<form:input type="text" value=${employeeInfo.employee_id}>
</form>
问题是它会说 value 属性对于标记
无效。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只是想将该值插入到输入框中,还是想将该属性绑定到该框(以便用户输入的新值存储在该属性中)?
如果是前者,则只需使用常规 HTML
并按照您的操作设置值。
如果是后者,请不要使用“值”,而使用“路径”,并省略 ${}。
Are you just trying to insert that value into the input box, or do you want to bind that property to the box (so that a new value typed by the user gets stored in that property)?
If the former, then just use a regular HTML
<input type="text">
and set the value as you are doing.If the latter, don't use "value", use "path", and leave off the ${}.