Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/jsp/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html JSP中的嵌套引用_Html_Jsp_Nested_Liferay_Quoting - Fatal编程技术网

Html JSP中的嵌套引用

Html JSP中的嵌套引用,html,jsp,nested,liferay,quoting,Html,Jsp,Nested,Liferay,Quoting,我怎样才能让雄猫吞下这条线??我试过所有的引用组合 <liferay-ui:search-container-column-text name="howstheweather" value="<liferay-ui:message key='<%=("Sun").equals(timeBean.today())?"sunny-day-msg":"take-umbrella-msg"%>'/>" /> 询问是否有任何解决方案,不评估对EL和JS

我怎样才能让雄猫吞下这条线??我试过所有的引用组合

 <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的更改,您不能在其他jsp标记的值中使用jsp标记。但是
-标记有一个
translate
属性。请为您选择解决方案:

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