未获取从 struts 操作类发送的 jsp 中的对象

发布于 2024-07-09 11:53:06 字数 708 浏览 7 评论 0原文

您好,有人可以解决这个问题吗?

我正在操作类中创建对象

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 技术交流群。

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

发布评论

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

评论(1

梅窗月明清似水 2024-07-16 11:53:06

使用“${userdetail}”而不是“${Userdetail}”。

Use "${userdetail}" instead of "${Userdetail}".

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