第四,在JSP中嵌套引用

时间:2012-08-22 15:38:47

标签: html jsp nested liferay quoting

如何让Tomcat吞下这条线?我尝试了所有引用组合!

 <liferay-ui:search-container-column-text name="howstheweather" 
   value="<liferay-ui:message key='<%=("Sun").equals(timeBean.today())?"sunny-day-msg":"take-umbrella-msg"%>'/>"
 />

询问是否有任何解决方案,而不是评估更改为EL和JSLT

1 个答案:

答案 0 :(得分:1)

您不能在其他jsp-tag的值中使用jsp-tag。但<liferay-ui:search-container-column-text .../> - 标记具有translate属性。为您解决方案:

<liferay-ui:search-container-column-text name="howstheweather" 
  value='<%=("Sun").equals(timeBean.today())?"sunny-day-msg":"take-umbrella-msg"%>'
  translate='true'
/>