6

我有一个 PrimeFacesp:dataTable并通过实现一个LazyDataModel.

dataTable 保存搜索结果,因此在执行搜索请求时,搜索服务仅检索所需的(分页)数据。这很好用。

使用 ajax 请求时p:commandButton

<p:commandButton id="searchCmdBtn" value="Search" action="#{searchBean.search}" 
   update=":resultForm:resultList :filterForm:filterMenu :resultForm:messages" 
   ajax="true" />

dataTable 得到正确更新,但不是 filterForm 中的 filterMenu (不同的形式,bcz using p:layout)。

filterMenu 是一个落后的请求。这意味着当我再次点击搜索按钮时,filterMenu 会更新为 t 仅在第二个 ajax 请求之后更新

@ManagedBean
@ViewScoped
public class SearchBean implements Serializable {

    private LazyDataModel<Entity> lazyDataModel;
    private MenuModel filterMenuModel = new DefaultMenuModel();
    private SearchResult searchResult = null;

    public void search() {   
        // lazy call
        getLazyDataModel();
        if (searchResult != null) {
            buildFilterMenu(searchResult);
        }
    }

    private void initializeDataModel() {

        lazyDataModel = new LazyDataModel<Entity>() {

            private static final long serialVersionUID = 1L;

            @Override
            public List<Entity> load(int first, int pageSize, List<SortMeta> multiSortMeta, Map<String, String> filters) {

                // handling sorting and filtering

                // get search results
                try {
                    setSearchResult(searchService.getEntities(queryText, selectedQueryOperand, getFilterOptions(), first, (first + pageSize), multiSortMeta));
                } catch (Exception e) {
                    // handle exception
                }
                if (searchResult == null) {
                    return null;
                }
                List<Entity> resultEntities = searchResult.getResultEntities();
                // total count
                this.setRowCount((int) searchResult.getTotalSize());
                return resultEntities;
            }

        // other override-methods     
        };
    }

    public void buildFilterMenu() {
        // builds the filterMenu depending on searchResults
    }


    // getters and setters

    public LazyDataModel<Entity> getLazyDataModel() {
        if (lazyDataModel == null) {
            initializeDataModel();
        }
        return lazyDataModel;
    }

}

过滤器.xhtml

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:p="http://primefaces.org/ui"
    xmlns:fn="http://java.sun.com/jsp/jstl/functions">

    <p:panelMenu id="filterMenu" model="#{searchBean.filterMenuModel}" />

</ui:composition>
4

1 回答 1

11

在搜索PF论坛后,我找到了根本原因:

在渲染响应阶段调用 dataTable Lazy load() 方法

要了解这些阶段,请阅读来自 BalusC 的有关 JSF 生命周期的本教程

显示消息的解决方案(例如:p:messagesp:growl):

  1. 使用 PrimeFaces RequestContext 更新消息组件

    RequestContext.getCurrentInstance().update(":growlOrMsgID");
    

    这将不起作用,因为那时添加其他组件进行更新为时已晚。

  2. 使用 dataTable 属性 errorMessage

    未找到具有此名称的 dataTable 属性

  3. 将 p:messages 或 p:growl 放在 p:dataTable 下面

    为我工作

  4. 使用 RequestContext 的 PF 执行方法

    RequestContext #execute()在当前 ajax 请求完成后执行 javascript。

    为我工作


也可以看看:

于 2013-07-31T14:19:52.217 回答