EL 2.2 内部评价

发布于 2024-12-13 19:20:43 字数 429 浏览 0 评论 0原文

我有一些代码如下:

<f:loadBundle basename="messages.application" var="prop" />
<ui:param name="currentUserAttr" value="#{prop['currentUser']}" /> 
// currentUserAttr=currentUserVal
<h1>Welcome #{sessionScope.currentUserAttr.name}</h1> // should be evaludated to sessionScope.currentUserVal.name

我想获取 currentUserAttr 的值,然后在从会话读取时用其值替换 attr,然后从会话中获取值,有什么想法如何在 EL 2.2 中做到这一点吗?

I have some code as follows:

<f:loadBundle basename="messages.application" var="prop" />
<ui:param name="currentUserAttr" value="#{prop['currentUser']}" /> 
// currentUserAttr=currentUserVal
<h1>Welcome #{sessionScope.currentUserAttr.name}</h1> // should be evaludated to sessionScope.currentUserVal.name

I want to get the value of currentUserAttr then when reading from session replacing the attr with its value then getting the value from session, any ideas how to do that in EL 2.2?

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

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

发布评论

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

评论(1

九命猫 2024-12-20 19:20:43

如果您想使用动态键,也请使用大括号表示法。

<h1>Welcome #{sessionScope[currentUserAttr].name}</h1>

Use the brace notation as well if you want to use a dynamic key.

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