dojo小例子(26)ObjectStore onFetch方法获取记录总数

前端之家收集整理的这篇文章主要介绍了dojo小例子(26)ObjectStore onFetch方法获取记录总数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
require(['dojo/when']);
var json = new JsonRest({target: url});

    store = new ObjectStore({objectStore: json});
    
    store.onFetch = function(results){
        // 方法一:
    	results.then(function(rs){
    		console.log('rs len->',rs.length);
    	});
        // 方法二:
    	when(results,function(results){
    		console.log('when->',results.length);
    		console.dir(results);
    	});
    };
原文链接:/dojo/291137.html

猜你在找的Dojo相关文章