JQuery AJAX JSF/JSF标记未标识.找不到FacesContext



我在使用jquery ajax和jsf组合时遇到了一个问题。我不太确定这是否是一个常见的问题,是否可以处理,但希望能找到解决方案。

下面是场景。我们正在用jsf开发一个门户项目。因此,在一个页面上,我们必须以表中的行为单位加载大量数据(有时是appx 300-400),每一行都有一个需要打开弹出窗口的链接。因此,为了不影响页面的性能,我计划延迟加载jsp(弹出内容)。所以考虑采用ajax。jsp具有ajax负载无法识别的jsf标记。我知道当jsp通过ajax加载时,它将是一个普通的/独立的(非jsf化的)版本。

因此,我的问题是:在这个场景中,我如何使jsp(弹出内容)jsf化,以便jsf标记可见。

目前我无法找到FacesContext。

我正在使用以下代码:

jQuery.ajax({
    type: "GET",
    cache: false,
    contentType: "text/html; charset=ISP-8859-1" ,
    url: '<%=renderResponse.encodeURL(renderRequest.getContextPath()+ "/tempfolder/tempLoader.jsp") %>',
    data:{param1:66, param2:88},
    success:function(msg) {    
        jQuery(".loadContent").html(msg);
        jQuery("#viewpopupdiv").children().show();
    }
});

还有我的jsp:

<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
<%@taglib uri="http://www.ibm.com/jsf/html_extended" prefix="hx"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>

<div id="view"  style="text-align:left">
<table class="viewpopupdiv" style="width:480px;background-color:#efedea;border-width: thin; border-color: #ff6633; border-style:solid;" cellpadding="0" cellspacing="0" border="0">
        <tr>
            <td>
                <table style="width:100%">
                    <tr>
                        <td>
                            <table style="width:100%;background-color:#424341;">
                                <tr>
                                    <td class="editLineHeaderDarkLeft">  
                                        <span class="">Line ID</span> :&nbsp;<span class="headerValueForPopup"><%=lineDetails.getDisplayableOrderLineId()%></span></td>
                                    <td class="editLineHeaderDarkCenter">  
                                        <span class="">Order Number</span>  :&nbsp;<span class="orderNumberHeaderValueForPopup"><%=lineDetails.getDisplayableOrderHeaderId()%></span></td> 
                                    <td class="editLineHeaderDarkRight"><div href="#" onclick="closePopupForEditLine('closepopupdiv')"><img class="close" src='<%=imgURL%>' border="0"></div>
                                    </td>
                                </tr>
                            </table>
<td class="editLineHeaderDarkLeft">                              
<div class="chargeTypeDropListJQ">  
                                        <h:selectOneMenu  value="#{popupBean.chargeTypeId}" styleClass="selectOneMenu">
                                            <f:selectItems value="#{popupBean.chargeType}" />
                                        </h:selectOneMenu>
                                    </div>
</td>
                    </tr>  
                </table>
</td></tr></table></div>

找不到FacesContext

当您在不调用FacesServlet的情况下以"普通"JSP的形式运行带有JSF组件的JSP页面时,您将遇到此异常。它负责创建FacesContext。请求URL需要与FacesServlet<url-pattern>相匹配,因为它在web.xml中进行了定义,以使所有JSF标签正常运行。

假设URL模式为*.jsf,则需要更改

url: '<%=renderResponse.encodeURL(renderRequest.getContextPath()+ "/tempfolder/tempLoader.jsp") %>',

url: '<%=renderResponse.encodeURL(renderRequest.getContextPath()+ "/tempfolder/tempLoader.jsf") %>',

相关内容

  • 没有找到相关文章

最新更新