码迷,mamicode.com
首页 > 其他好文 > 详细

extraParams ,

时间:2018-03-27 15:25:31      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:blog   art   inf   添加   ack   否则   执行   body   参数表   

extraParams:将在每次请求中包含的额外参数。个别请求中具有相同名称的参数, 当它们冲突时,这些参数会进行重写。

 

 

store.load({
       params: {start:0,limit:20},    //参数
            // callback是加载完毕时执行的回调函数,它包含3个参数:records参数表示获得的数据,
            // options表示执行load()时传递的参数,success表示是否加载成功。
       callback: function(records, options, success){
                  Ext.Msg.alert(‘info‘, ‘加载完毕‘);
         },
        scope: store, //Scope用来指定回调函数执行时的作用域
           //Add为true时,load()得到的数据会添加在原来的store数据的末尾,
          //否则会先清除之前的数据,再将得到的数据添加到store中
  add: true
});

extraParams ,

标签:blog   art   inf   添加   ack   否则   执行   body   参数表   

原文地址:https://www.cnblogs.com/xsSystem/p/8657544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!