2

我正在学习 DOJO 1.6。

我有数据

var data = [
        { FirstName: 'xyz', Lastname: 'QSD', rollNo: '1', EntryDate: '2012-09-11T17:35:31.835+02:00' },
        { FirstName: 'abc', Lastname: 'qgr', rollNo: '2', EntryDate: '2012-08-11T17:35:31.835+02:00' }
        { FirstName: 'ert', Lastname: 'fgd', rollNo: '3', EntryDate: '2012-18-11T17:35:31.835+02:00' }
    ];

我想根据姓氏或 EntryDate 对其进行排序并以树格式显示。

提前致谢。


多根数据

data: [
            { id: 'world', name:'The earth', type:'planet', population: '6 billion'},
            { id: 'AF', name:'Africa', type:'continent', population:'900 million', area: '30,221,532 sq km',
                    timezone: '-1 UTC to +4 UTC', parent: 'world'},
                { id: 'EG', name:'Egypt', type:'country', parent: 'AF' },
                { id: 'KE', name:'Kenya', type:'country', parent: 'AF' },
                    { id: 'Nairobi', name:'Nairobi', type:'city', parent: 'KE' },
                    { id: 'Mombasa', name:'Mombasa', type:'city', parent: 'KE' },
                { id: 'SD', name:'Sudan', type:'country', parent: 'AF' },
                    { id: 'Khartoum', name:'Khartoum', type:'city', parent: 'SD' },
            { id: 'AS', name:'Asia', type:'continent', parent: 'world' },
                { id: 'CN', name:'China', type:'country', parent: 'AS' },
                { id: 'IN', name:'India', type:'country', parent: 'AS' },
                { id: 'RU', name:'Russia', type:'country', parent: 'AS' },
                { id: 'MN', name:'Mongolia', type:'country', parent: 'AS' },
            { id: 'OC', name:'Oceania', type:'continent', population:'21 million', parent: 'world'},
            { id: 'EU', name:'Europe', type:'continent', parent: 'world' },
                { id: 'DE', name:'Germany', type:'country', parent: 'EU' },
                { id: 'FR', name:'France', type:'country', parent: 'EU' },
                { id: 'ES', name:'Spain', type:'country', parent: 'EU' },
                { id: 'IT', name:'Italy', type:'country', parent: 'EU' },
            { id: 'NA', name:'North America', type:'continent', parent: 'world' },
            { id: 'SA', name:'South America', type:'continent', parent: 'world' }
        ],
4

1 回答 1

3

JavascriptArray有一个原生函数,称为sort. 这将按字母顺序对值进行现成的排序。为了对非字符串值进行排序,我们需要提供一个排序函数。像这样,关于Lastname

data.sort(function(a,b) {
    var _A=a.Lastname.toLowerCase(), 
        _B=b.Lastname.toLowerCase();

    if (_A < _B) //sort string ascending
      return -1 
    if (_A > _B)
      return 1
    return 0 //default return value (no sorting)
});

如果您按日期排序,则需要初始化_A_BDate.

但是,如果您的目标是data在 a 中表示 a dijit.Tree,则可以使用内置方法对 a 进行排序Store,让我们将其包装data成 adojo/data/ItemFileReadStore并在树中显示。树将有一个模型,使用ItemFileWriteStore- 以便可以修改项目:

var sortableStore = new dojo.data.ItemFileReadStore({
    data: {
        identifier: 'rollNo',
        items: data
    },
    comperatorMap: {
        'EntryDate' : function(a,b) {
            var _A = new Date(a), _B = new Date(b);
            if(_A > _B) return 1;
            else if(_A == _B) return 0;
            else return -1;
        }
});

在设置 'sort' 参数时使用 'store.fetch()' API,您可以控制返回项目的顺序。您将必须创建一个函数的 ComperatorMap 的 EntryDate,Array.sort()以便对其进行正确排序。请参阅文档

var model = new dijit.tree.ForestStoreModel({
    rootLabel: 'Names',
    store: new dojo.data.ItemFileWriteStore({
        data: {
            identifier: 'rollNo',
            items: data, 
  // blank, initially - can fill in with 'data' to show non-sorted items until sort is called
            label: 'FirstName'
        }
    }) // blank itemsstore
});

var tree = new dijit.Tree({
    model: model
});

好的,一切就绪 - 但问题.fetch是,它使用回调(onComplete)运行并且难以以递归方式控制。相反,放入THIS FIDDLE中的功能会复制存储数据,然后通过本机数组排序对其进行排序 - 而不是使用SimpleQueryEngine.

这将证明提供更可靠的结果 - 但确实会混淆 DnD 控制器和持久标志..

看看 store 如何对fetch这里返回的项目进行排序:fiddle。然而,这一次只对一个“级别”进行排序,并且不执行深度排序。
IMO:排序的正确实现是服务器端排序,直接在数据库查询中。

http://dojotoolkit.org/reference-guide/1.8/dojo/data/ItemFileReadStore.html#custom-sorting

http://dojotoolkit.org/reference-guide/1.8/dijit/Tree.html

于 2012-10-01T19:42:38.483 回答