为什么在 jsf 中使用任何 a4j 元素添加到页面代码第二个 body 和 head 标签?

Why usage of any a4j element in jsf add to page code second body and head tags?

在我的 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 元素时添加的,它复制了现有的正文和 html 标签(前两行)。我使用的 richfaces 版本是 3.1.6.SR1。谁能告诉我如何修复它?

好的,这是3.1.6.SR1库的问题,最后一个支持jsf 1.1版本。我在 google 中找到了以下解决方案 https://developer.jboss.org/thread/196997?tstart=0。然而,它并不完美,并非在所有情况下都有效。因此,我试图通过其他方式解决这个问题,并且按照上面 link 的建议,我已经更改了 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');

line 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;
    }

仅此而已。通过此更改,此问题不再存在。