访问 JSP 中定义的数组
我在java类中定义了对象数组,在JSP中我已经使用实例化了该类的对象
<jsp:usebean id="obj" class="complete path of class"/>
,并在JSP中使用它们进行了打印
<c:out>${obj.array.[0].membervariable}</c:out>
。我已经使用导入了该类
<% page import="complete path of class"%>
,但无法打印该值。我在这里错过了什么吗?
I have arrays of objects defined in a java class, In JSP I have instantiated object of that class using
<jsp:usebean id="obj" class="complete path of class"/>
and printing them using
<c:out>${obj.array.[0].membervariable}</c:out>
in JSP. I have imported the class using
<% page import="complete path of class"%>
but I am not able to print the value. Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个,
“。”不需要
Try this,
'.' is not requried