有时,我需要在JSF页面中使用EL渲染JavaScript变量。
E.g。
<script>var foo = '#{bean.foo}';</script>
或
<h:xxx ... onclick="foo('#{bean.foo}')" />
当EL表达式求值为包含JS特殊字符(如撇号和换行符)的字符串时,这会导致JS语法错误。我怎么逃避呢?
答案 0 :(得分:14)
您可以在EL中使用Apache Commons Lang 3.x StringEscapeUtils#escapeEcmaScript()
方法。
首先创建一个/WEB-INF/functions.taglib.xml
,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<facelet-taglib
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facelettaglibrary_2_0.xsd"
version="2.0">
<namespace>http://example.com/functions</namespace>
<function>
<name>escapeJS</name>
<function-class>org.apache.commons.lang3.StringEscapeUtils</function-class>
<function-signature>java.lang.String escapeEcmaScript(java.lang.String)</function-signature>
</function>
</taglib>
然后在/WEB-INF/web.xml
中注册,如下所示:
<context-param>
<param-name>javax.faces.FACELETS_LIBRARIES</param-name>
<param-value>/WEB-INF/functions.taglib.xml</param-value>
</context-param>
然后您可以按如下方式使用它:
<html ... xmlns:func="http://example.com/functions">
...
<script>var foo = '#{func:escapeJS(bean.foo)}';</script>
...
<h:xxx ... onclick="foo('#{func:escapeJS(bean.foo)}')" />
或者,如果你碰巧已经使用了JSF实用程序库OmniFaces,那么你也可以使用它的内置of:escapeJS()
函数:
<html ... xmlns:of="http://omnifaces.org/functions">
...
<script>var foo = '#{of:escapeJS(bean.foo)}';</script>
...
<h:xxx ... onclick="foo('#{of:escapeJS(bean.foo)}')" />
答案 1 :(得分:-1)
您是否尝试过\'#{_selectedItem.item.webName}\',
?