18

我们有一个基于 JBoss 7.1 和JSF2和 Primefaces 3.3 的 Web 应用程序。

在我们的一个页面上,有一个ui:repeat显示 10 个项目;然后用户可以单击某种“显示更多”按钮,并通过 ajax 显示另外 10 个项目。用户可以单击“显示更多”按钮,直到没有更多要显示的项目。注意:这不是分页,每次点击“显示更多”,显示的列表会变长。

实际上,当用户点击按钮时,服务器返回旧项和新项,JSF客户端每次都必须通过jQuery重建整个repeater。

我们希望找到更好、性能更高的解决方案。旧项目在n-1n调用之间不会更改,因此如果服务器只能通过 ajax 返回 10 个新项目,效率会更高。

在 JSF2 中可能吗?JSF 似乎并不真正兼容这种递归渲染。唯一可能对我们有帮助的组件是 TreeNode 组件,但它似乎有点 hack :-/

4

2 回答 2

10

在标准的 JSF API 中没有这样的东西。在 PrimeFaces 中也没有想到任何东西。对于 PrimeFaces,请参阅最后的更新

然而,OmniFaces <o:componentIdParam>可能正是您正在寻找的。它允许您让 JSF 根据特定请求参数(可以是组件 ID 或客户端 ID)仅呈现组件树的子集。您基本上可以只使用 jQuery将起始索引作为请求参数$.get()重新加载,<ui:repeat>并使用 jQuery$.append()将其附加到 HTML DOM。

这是一个完整的启动示例。风景:

<!DOCTYPE html>
<html 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:o="http://omnifaces.org/ui"
>
    <f:metadata>
        <o:componentIdParam componentIdName="componentId" />
    </f:metadata>
    <h:head>
        <title>Stack Overflow Question 11364006</title>
        <script src="http://code.jquery.com/jquery-latest.min.js"></script> <!-- Substitute with PrimeFaces' one, if necessary. -->
    </h:head>
    <h:body>
        <ul id="items">
            <ui:repeat id="itemsRepeater" value="#{bean.items}" var="item">
                <li>#{item}</li>
            </ui:repeat>
        </ul>
        <input type="button" id="showMore" value="Show more"/>
        <h:outputScript>
            $("#showMore").click(function() {
                $items = $("#items");
                var params = { start: $items.find("li").length, componentId: "itemsRepeater" };
                $.get(location, params, function(html) {
                    $items.append(html);
                });
            });
        </h:outputScript>   
    </h:body>
</html>

支持bean:

@ManagedBean
@RequestScoped
public class Bean {

    private List<String> items;

    @ManagedProperty("#{param.start}")
    private int start;

    @PostConstruct
    public void init() {
        // Just a stub. Do your thing to fill the items.
        items = new ArrayList<String>();
        int size = start + 10;

        for (int i = start; i < size; i++) {
            items.add("item " + (i + 1));
        }
    }

    public void setStart(int start) {
        this.start = start;
    }

    public List<String> getItems() {
        return items;
    }

}

更新:可以在当前展示应用程序页面的“可扩展列表”示例中找到现场演示<o:componentIdParam>

更新 2):PrimeFacesp:datascroller具有“按需滚动”的延迟加载功能

于 2012-08-14T16:15:11.913 回答
1

对于这样的情况,我完全绕过 JSF 并使用带有 jQ​​uery AJAX 的 JAX-RS 服务。这种方法将帮助您构建比 JSF 提供的 AJAX 支持更好的应用程序。这是基本技术。

在 XHTML 页面中,只需为列表添加一个占位符:

<div id="item_list"></div>

<a href="#" onclick="loadNext();">Load more...</a>

当页面加载时,发出 AJAX 请求以填充初始列表。这是示例代码。可能有错别字,但你明白了。

var nextStart = 0;

$(function() {
    loadNext();
});

function loadNext() {
    $.ajax({
        type: "GET",
        url: "api/items?start=" + nextStart,
        success: function(data) {
            appendToList(data);
            nextStart += data.length;
        }
    });
}

function appendToList(data) {
    //Iterate through data and add to DOM
    for (var i = 0; i < data.length; ++i) {
        $("#item_list").append($("<p>", {text: data.productName}));
    }
}
于 2012-08-15T18:39:34.177 回答