中的属性值支柱2
如何在
中设置属性值
我尝试了
但它不起作用。
请帮忙
How to set propety value in <s:textfield>
I tried <s:textfield name="customerName" label="Customer Name" value='<s:property value="userInfo.customerName"' />
but it didn't work.
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能在标签内使用标签。请改用 OGNL!
You can not use a tag inside of a tag. Use OGNL instead!
使用 OGNL(对象图导航语言)在任何类型的 struts 领域中获取价值。如果您无法获取值,请检查变量的 setter 和 getter。
或者
Use OGNL (Object Graph Navigation Language) to get value in any kind of field of struts. If you will not get value please check setter and getter of the variable.
OR
我使用了这个:
禁用属性不是强制性的,我用它来禁用文本字段,这样将从数据库中检索值,并将禁用用户对其进行更改。
I used this:
The disabled attribute is not mandatory, I used it to disable the textfield that way the values will be retrieved from the DB and will be disable for the user to make changes on it.