当前位置 : 主页 > 网页制作 > Dojo >

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

来源:互联网 收集:自由互联 发布时间:2021-06-15
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); }); // 方法二:
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);
    	});
    };
网友评论