温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

'Ext.data.Store' 中的 load

发布时间:2020-07-22 20:03:22 来源:网络 阅读:1079 作者:woaiyiwa01 栏目:开发技术
//产品store       window.product_store=Ext.create('Ext.data.Store',{  fields:[            'id',            'aid',            'webid',            'title',            'kindlist',            'attrid',            'ishidden',            'displayorder',            'kindname',            'attrname',            'themelist',            'iconlist',            'modtime',            'templet',            'url',            'finaldestid',            'finaldestname'        ],        proxy:{    type:'ajax',    api: {             read: SITEURL+'article/article/action/read',  //读取数据的URL      update:SITEURL+'article/article/action/save',      destroy:SITEURL+'article/article/action/delete'             },       reader:{               type: 'json',   //获取数据的格式                root: 'lists',               totalProperty: 'total'               }             },  remoteSort:true,        autoLoad:true,  pageSize:30,        listeners:{               load:function( store, records, successful, eOpts )               {                   if(!successful){                       ST.Util.showMsg("{__('norightmsg')}",5,1000);                   }                   var pageHtml = ST.Util.page(store.pageSize, store.currentPage, store.getTotalCount(), 10);                   $("#line_page").html(pageHtml);                   window.product_grid.doLayout();                   $(".pageContainer .pagePart a").click(function () {                       var page = $(this).attr('page');                       product_store.loadPage(page);                   });               }           }         });


load( Ext.data.Store store, Ext.data.Model[] records, Boolean successful, Object eOpts )

每当store从远程数据源读取数据时触发此事件.

Parameters

  • store : Ext.data.Store

    当前Store对象

  • records : Ext.data.Model[]

    数据记录数组

  • successful : Boolean

    当操作成功时为'true'.

  • eOpts : Object

    The options object passed to Ext.util.Observable.addListener.


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI