dojo增强的网格服务器端分页不工作

vawmfj5a  于 2022-12-16  发布在  Dojo
关注(0)|答案(1)|浏览(199)

我在尝试使用增强的datagrid(dojo v1.10)执行服务器端分页时遇到了一个问题。第一页正确显示,但小部件(store?grid?plugin?)似乎忽略了响应中的“Content-Range”头值,并且不允许获取下一页。例如,响应头包含“Content-Range:项目0-9/17“,分页显示”10个项目中的1到10个“,下一页不可用。
经过一些调试后,我看到从JsonRest存储(查询函数)正确读取了范围值

results.total = results.then(function(){
    var range = results.ioArgs.xhr.getResponseHeader("Content-Range");
    return range && (range = range.match(/\/(.*)/)) && +range[1];
    }); 
...

但在从ObjectStore获取方法中,totalCount值未定义,然后使用results.length:

var results = this.objectStore.query(query, args);
        Deferred.when(results.total, function(totalCount){
            Deferred.when(results, function(results){
                if(args.onBegin){
                    args.onBegin.call(scope, totalCount || results.length, args);
...

你知道吗?
谢谢你,
我的代码:

// get grid store
var restStore = new JsonRest(
    {
        target: "ks2/api/workflow/...",
    });
var memoryStore = new Memory();
var store = Cache(restStore, memoryStore);      

/*set up layout*/
var layout = [{
            name: "id",
            field: 'id',
            width: '5%',
            datatype:"string"
        },
        ....
    ];

/*create a new grid*/
this.workflowGridWidget = new EnhancedGrid({
        id: 'workflowGridWidget',
        store: new ObjectStore({objectStore: store}),
        structure: layout,
        rowSelector: '20px',
        plugins: {
            pagination: {
                          pageSizes: ["10", "25", "50"],
                          defaultPageSize: 10,
                          description: true,
                          sizeSwitch: true,
                          pageStepper: true,
                          gotoButton: true,
                          maxPageStep: 4,//page step to be displayed
                          position: "bottom" //position of the pagination bar
                      }
        }
    });

/*append the new grid to the div*/
this.workflowGridWidget.placeAt("workflowDataGrid");

/*Call startup() to render the grid*/
this.workflowGridWidget.startup();
bqujaahr

bqujaahr1#

我发现了问题:我使用了一个不符合dojo restful的API,需要使用

aspect.after(store, "query", this.processResponse);
...

processResponse: function ks2ProcessMonitor_datagrid_WorkflowDataGrid_processResponse(deferred) {
    return deferred.then(function(response) {
        //process response content
        return processedResponse;   
    });
},

这是工作正常,但由于某些原因,它对分页有影响。删除此后处理(使用另一个符合dojo的API)修复分页问题。也许我应该尝试使用Layke建议的Observable响应后处理。

相关问题