在我的jsf页面代码中,我有一个与此类似的结构:
<frameset id="navframeset">
<frame name="navframe" src='<c:url value="TopNavigation.jsf"/>'/>
<frameset>
<frame name="leftframe" src='<c:url value="Test1.jsf"/>'/>
<frame name="tabbedframe" src='<c:url value="Test2.jsf"/>' />
</frameset>
在Test2.jsf中,我包含了以下richfaces库:
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
当我尝试在页面代码中使用任何a4j元素时,例如a4j:button,那么此代码将在我的输出html文件中生成:
<head>...</head>
<body>..</body>
<head><script xmlns="http://www.w3.org/1999/xhtml">A4J.AJAX._scriptEvaluated=true;</script></head>
<body marginwidth="0" marginheight="0"></body>
当我在页面代码中使用a4j元素并且它复制现有的body和html标记(前两行)时,会添加这两个最后一行。我正在使用的richfaces版本是3.1.6.SR1。任何人都可以给我一个如何解决它的提示吗?
答案 0 :(得分:3)
好的,这是3.1.6.SR1库的问题,最后一个支持jsf 1.1版本。我在google下面找到了解决方案https://developer.jboss.org/thread/196997?tstart=0。然而,它并不完美,并不适用于所有情况。因此,我试图以其他方式解决这个问题,并作为上述链接中的建议,我已经更改了AJAX.js文件格式richfaces-impl.jar。我从richfaces-3.2版本中获取了AJAX.js文件并替换了3.1.6.SR1中的代码。应更改以下部分:
第1412行 //添加了A4J.AJAX.TestScriptEvaluation();
A4J.AJAX.processResponse = function(req) {
A4J.AJAX.TestScriptEvaluation();
var options = req.options;
var ajaxResponse = req.getResponseHeader('Ajax-Response');
第2014行 TestScriptEvaluation函数应替换为以下函数:
//Test for re-evaluate Scripts in updated part. Opera & Safari do it.
A4J.AJAX._scriptEvaluated=false;
A4J.AJAX.TestScriptEvaluation = function () {
if ((!document.all || window.opera) && !A4J.AJAX._scriptTested){
try{
// Simulate same calls as on XmlHttp
var oDomDoc = Sarissa.getDomDocument();
var _span = document.createElement("span");
document.body.appendChild(_span);
// If script evaluated with used replace method, variable will be set to true
var xmlString = "<html xmlns='http://www.w3.org/1999/xhtml'><sc"+"ript>A4J.AJAX._scriptEvaluated=true;</scr"+"ipt></html>";
oDomDoc = (new DOMParser()).parseFromString(xmlString, "text/xml");
var _script=oDomDoc.getElementsByTagName("script")[0];
if (!window.opera && !A4J.AJAX.isWebkitBreakingAmps() && _span.outerHTML) {
_span.outerHTML = new XMLSerializer().serializeToString(_script);
} else {
var importednode ;
importednode = window.document.importNode(_script, true);
document.body.replaceChild(importednode,_span);
}
} catch(e){ /* Mozilla in XHTML mode not have innerHTML */ };
}
A4J.AJAX._scriptTested = true;
}
就是这样。通过此更改,此问题不再存在。