如何在 Liferay JSP 中将 JSTL 变量转换为字符串?
我的最新 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对你有用吗?
Does this work for you?