在struts中显示动态值
我正在尝试将数据库中的值显示到struts。
如果我使用
值将显示在文本框中。
<html:text property="tCG.year" size="6"></html:text>
但是,如果当我尝试使用 ${tCG.year}
显示为标签时相同的属性,则该值不会显示。
I m trying to display a value from database to struts.
If I use <html:text>
the value is displayed in the text box.
<html:text property="tCG.year" size="6"></html:text>
But, if same property when I try to display as label using ${tCG.year}
the value is not getting displayed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,如果与表单关联的表单 bean 名为
myCoolForm
,则应使用的表达式为${myCoolForm.tCG.year}
<html:text property="tCG.year/>
means "display a text box filled with the propertyyear
of the propertytCG
of the form bean associated to the enclosinghtml:form
".So, if the form bean associated to the form is named
myCoolForm
, the expression you should use is${myCoolForm.tCG.year}