0

好吧,我已经能够让它与 DataGrid 一起工作,但出于某种原因,Dgrid 确实令人印象深刻,同时也非常令人沮丧(很多人推荐它)。到目前为止,我已经能够请求一定数量的数据(只有第一次调用,所以我的请求标头指定返回 25 个项目......),一旦我尝试向下滚动以获得更多项目(所以应该发送额外的请求) 没发生什么事。

基本上这就是使用 jsonrest 构建的商店:

define([
    "dojo/store/Memory",
    "dojo/store/JsonRest",
    "dojo/store/Cache",
    "dojo/store/Observable"
    ],
function(
    Memory,
    JsonRest,
    Cache,
    Observable
){

    var contentMemoryStore = new Memory();
    var contentJsonRestStore = new JsonRest({target: "http://dev.mpact.tv:30087/rest/contenus/"});

    contentStore = new Cache(contentJsonRestStore, contentMemoryStore);

    return new Observable(contentStore);
});

然后,我将此存储传递给 OnDemandGrid 的属性。

我检查了这个人的例子:http ://www.speich.net/articles/demos/jsonrest/dojo-demo-dgrid.php 我检查了 dgrid 的文档(OnDemandList):https ://github.com/SitePen /dgrid/wiki/核心组件

添加了请求标头/响应标头(但我认为它们是正确的): 在此处输入图像描述 在此处输入图像描述

服务器端代码(在 perl 中):

$r->headers_out->set('Content-Range', sprintf("items %d-%d/%d", $start, $start 
+ $num_items - 1, $total));

更新:

我用旧的 jsonstore (dojox/data) 做了一个快速测试:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <title>Statut des canaux générés par Gipsy</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></meta>
        <style type="text/css">
            @import "/dojo/dojo/resources/dojo.css";
            @import "/dojo/dijit/themes/tundra/tundra.css";
            @import "/dojo/dojox/grid/resources/Grid.css";
            @import "/dojo/dojox/grid/resources/tundraGrid.css";
            //.grid {
            //    width: 70em;
            //    height: 40em;
            //}
            .Title { text-align: center }
            html, body { height: 100%; margin: 0px; font-size: 14px; }
        </style>
        <script type="text/javascript" src="/dojo/dojo/dojo.js"  djConfig="isDebug:false, parseOnLoad: false"></script>
        <script type="text/javascript">
            dojo.require("dijit.layout.BorderContainer");
            dojo.require("dijit.layout.ContentPane");
            dojo.require("dojox.grid.TreeGrid");
            dojo.require("dijit.tree.ForestStoreModel");
            dojo.require("dojox.data.JsonRestStore");
            dojo.require("dojo.parser");

            dojo.addOnLoad(function(){

                dojo.parser.parse();

                var layout = [
                    { name: "Dossier", field: "repertoire", width: "auto" },
                    { name: "Fichier", field: "fichier", width: "auto" },
                    { name: "Nom", field: "nom", width: "auto" },
                    { name: "Date", field: "date", width: "auto" }
                ];
                //var jsonStore = new dojo.data.ItemFileReadStore({ data: dataItems });
                //var jsonStore = new dojo.data.ItemFileReadStore({ url: "/cgi-bin/senscity/stingray.json", clearOnClose: true });
                var jsonStore = new dojox.data.JsonRestStore({idAttribute: 'id', target: 'http://dev.mpact.tv:30087/rest/contenus'});
                var treeModel = new dijit.tree.ForestStoreModel({
                    store: jsonStore,
                    query: { type: 'canal' },
                    rootId: 'canalRoot',
                    rootLabel: 'Banane',
                    childrenAttrs: ['children']
                });
                var grid = new dojox.grid.TreeGrid({
                    treeModel: treeModel,
                    structure: layout,
                    selectable: true,
                    defaultOpen: false
                }, 'programmatic_grid');
                grid.startup();
                dojo.connect(window, "onresize", grid, "resize");
            });
        </script>
    </head>
    <body class="tundra">
<!-- -->
        <h1 class="Title" style="margin-bottom: 0.5em;">Statut de la programmation</h1>
        <div dojoType="dijit.layout.BorderContainer" style="width: 100%; height: 100%;">
<!--
            <div dojoType="dijit.layout.ContentPane" region="top" style="height: 20pt; padding: 0px; border: 0px;">
            date de dernière mise à jour, décompte de prochaine mise à jour, bouton de mise à jour, case de désactivation de mise à jour automatique
            </div>
-->
            <div dojoType="dijit.layout.ContentPane" region="center">
<!-- -->
                <div id="programmatic_grid"></div>
<!-- -->
            </div>
<!-- -->
        </div>
    </body>
</html>

所以,我猜它必须是商店或网格。

4

2 回答 2

5

注意 Request 有一个 HTTP Header Range。这表明正在请求哪些项目。然后在响应中,您需要包含一个Content-Range标题,该标题描述了要返回的项目和可用的总数。

您的响应包括标题:

Content-Range: items=0-24/123456

看起来格式需要是:

Content-Range: items 0-24/66

来自JsonRest 文档

Paging

JsonRest store uses HTTP’s Range header to perform paging. When a request is made for a range of items, JsonRest will include a Range header with an items range unit specifying the range:

Range: items=0-24
On your server, you should look at the Range header in the request to know which items to return. The server should respond with a Content-Range header to indicate how many items are being returned and how many total items exist:

Content-Range: items 0-24/66
于 2012-07-26T19:52:42.303 回答
3

我忘了提到我正在使用我的休息框架进行跨域请求(也许应该说......)。

两天后发现,这是我的问题的原因(我仍然不知道原因或来源)。当我将代码迁移到服务器时,一切正常。在我的 php 服务器上做了一个简单的小测试来填充 onDemandeGrid 并看到它在我的本地主机上工作!

另外,为了绕过跨域,我在我的服务器端休息代码中添加了这个标头(继续在跨域上开发,直到我们有一个像样的开发环境):

Access-Control-Expose-Headers:Content-Range
于 2012-07-27T17:11:00.163 回答