如何在 Liferay JSP 中将 JSTL 变量转换为字符串?

发布于 2024-10-09 03:02:57 字数 681 浏览 2 评论 0原文

我的最新 Liferay Portlet 或者我在此 Portlet 中使用的 JSP 有问题。 我正在使用一个字符串数组,其中包含带有删除按钮的页面上显示的字符串。每个按钮都会调用一个 actionURL 将所选数据提交到另一个函数。 也许通过查看我的示例代码更容易理解我想要做什么:

<c:forEach var="name" items="<%=myNames %>">    
    <liferay-portlet:actionURL name="deleteName" var="${name}">
        <liferay-portlet:param name="myName" value="${name}" />
    </liferay-portlet:actionURL>    
    <c:out value="${name}" />
    <liferay-ui:icon-delete label="<%= true %>" url="${name}"/> 
</c:forEach>

也许您已经注意到我的问题是什么:actionURL 中的 var 属性必须是字符串。这就是为什么这个例子不起作用。 我现在的问题是:如何动态转换 $name 变量以将其设置为 actionURL,然后使用图标调用它?

谢谢。

I habe a problem with my latest Liferay Portlet or rather a JSP I'm using in this portlet.
I am using a string array that contains strings which are shown on the page with a delete-button. Each of these buttons calls an actionURL to submit the selected data to another function.
Maybe it's easier to understand what I want to do by just looking at my example code:

<c:forEach var="name" items="<%=myNames %>">    
    <liferay-portlet:actionURL name="deleteName" var="${name}">
        <liferay-portlet:param name="myName" value="${name}" />
    </liferay-portlet:actionURL>    
    <c:out value="${name}" />
    <liferay-ui:icon-delete label="<%= true %>" url="${name}"/> 
</c:forEach>

Maybe you already noticed what my problem is: the var-attribute in the actionURL has to be a string. That's why this example doesn't work.
My question is now: how can I cast my $name variable dynamically to set it int the actionURL and later call it with the icon?

Thank you.

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

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

发布评论

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

评论(1

酒浓于脸红 2024-10-16 03:02:57
<%
List<String> names = new ArrayList<String>();
names.add("me");
names.add("myself");
names.add("I");

pageContext.setAttribute("names", names);
%>

<c:forEach var="name" items="${names}">
    <portlet:actionURL var="deleteURL">
        <portlet:param name="myName" value="${name}" />
    </portlet:actionURL>

    <liferay-ui:icon-delete label="<%= true %>" url="${deleteURL}"/>
</c:forEach>

这对你有用吗?

<%
List<String> names = new ArrayList<String>();
names.add("me");
names.add("myself");
names.add("I");

pageContext.setAttribute("names", names);
%>

<c:forEach var="name" items="${names}">
    <portlet:actionURL var="deleteURL">
        <portlet:param name="myName" value="${name}" />
    </portlet:actionURL>

    <liferay-ui:icon-delete label="<%= true %>" url="${deleteURL}"/>
</c:forEach>

Does this work for you?

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