是否可以使用 Struts 访问集合中的第三个元素?

发布于 2024-09-06 01:05:27 字数 128 浏览 5 评论 0原文

有没有办法在 Struts/JSP 中执行以下操作?

<html:checkbox property="list.get(0).checked" />

先感谢您。

Is there a way to do the following thing in Struts / JSP?

<html:checkbox property="list.get(0).checked" />

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

萌能量女王 2024-09-13 01:05:46

如果您想访问 JSTL 列表中的第三个元素,语法就像数组一样:

<html:checkbox property="list[2].checked" />

请注意,如果您是 JSTL/EL 新手,则必须将适当的 jar 添加到类路径中并引用标记库。

If you want to access the 3rd element in a list in JSTL, the syntax is just like arrays:

<html:checkbox property="list[2].checked" />

Note that if you are new to JSTL/EL you'll have to add the appropriate jar to your classpath and reference the tag library.

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