在struts中显示动态值

发布于 2025-01-06 05:37:45 字数 250 浏览 2 评论 0原文

我正在尝试将数据库中的值显示到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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光病人 2025-01-13 05:37:45

因此,如果与表单关联的表单 bean 名为 myCoolForm,则应使用的表达式为${myCoolForm.tCG.year}

<html:text property="tCG.year/> means "display a text box filled with the property year of the property tCG of the form bean associated to the enclosing html:form".

So, if the form bean associated to the form is named myCoolForm, the expression you should use is ${myCoolForm.tCG.year}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文