未获取从 struts 操作类发送的 jsp 中的对象
您好,有人可以解决这个问题吗?
我正在操作类中创建对象
public CgUsers getUserdetail(){
CgUsers user = userManager.getUser(id);
return user;
}
,并且我正在尝试在 jsp 页面中使用该对象,
c:forEach items="${Userdetail}" var="user">
<ul>
<li><c:out value="${user.getLastName()}"/> </li>
</c:forEach>
如果我尝试在操作类的执行方法中获取输出,我就得到了正确的结果, 但我没有在jsp页面中得到它。
它在浏览器上给出错误,例如
/WEB-INF/pages/search/profile.jsp(15,8) PWC6296: The function getLastName must be used with a prefix when a default namespace is not specified
有人可以提出解决方案吗? 那太好了。
Hello can anybody solve this please
I'm creating the object in the action class
public CgUsers getUserdetail(){
CgUsers user = userManager.getUser(id);
return user;
}
And I'm trying to use that object in the jsp page
c:forEach items="${Userdetail}" var="user">
<ul>
<li><c:out value="${user.getLastName()}"/> </li>
</c:forEach>
If I try to get the output in the execute method of the action class I'm getting it right,
but I'm not getting it in the jsp page.
And it's giving the error on the browser like
/WEB-INF/pages/search/profile.jsp(15,8) PWC6296: The function getLastName must be used with a prefix when a default namespace is not specified
Can anybody suggest a solution? That'll be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“${userdetail}”而不是“${Userdetail}”。
Use "${userdetail}" instead of "${Userdetail}".