Sencha touch 2 sencha touch~加载更多事件时重置额外参数

Sencha touch 2 sencha touch~加载更多事件时重置额外参数,sencha-touch-2,refresh,paging,param,Sencha Touch 2,Refresh,Paging,Param,当加载更均匀的火焰时,我需要重新分配额外的参数。但是我不知道 这是我的密码 List.js Ext.define('bluebutton.view.BlueButton.TestingList', { extend: 'Ext.List', xtype: 'testinglistcard', requires: [ 'Ext.field.Select', 'Ext.field.Search', // 'bluebutton.v

当加载更均匀的火焰时,我需要重新分配额外的参数。但是我不知道

这是我的密码

List.js

Ext.define('bluebutton.view.BlueButton.TestingList', {
    extend: 'Ext.List',
    xtype: 'testinglistcard',
    requires: [
        'Ext.field.Select',
        'Ext.field.Search',
//        'bluebutton.view.BlueButton.MemberDetail',
         'Ext.plugin.ListPaging',
        'Ext.plugin.PullRefresh',
        'Ext.dataview.Override'

    ],
    config: {


        styleHtmlContent: true,
        scrollable: 'vertical',
        indexBar: true,
        singleSelect: true,
        onItemDisclosure: true,
        grouped: true,
        variableHeights : false,
          store : { xclass : 'bluebutton.store.BlueButton.Testing'},
            itemHeight :100,
        loadingText : 'loading',
        id :'testinglist',


                       plugins: [

                            { xclass: 'Ext.plugin.PullRefresh',
                                refreshFn: function() {             


                                        var transaction = Ext.ModelMgr.getModel('bluebutton.model.BlueButton.Testing');
                                        var proxy  = transaction.getProxy();
                                         proxy.setExtraParam('refresh', 'true' );

                                            Ext.getStore('testingstore').load();

                                    },

                            },

                          { 
                               xclass: 'Ext.plugin.ListPaging',
                                 autoPaging: true,
                                  loadNextPage: function() {

                                   var transaction = Ext.ModelMgr.getModel('bluebutton.model.BlueButton.Testing');
                                        var proxy  = transaction.getProxy();
                                         proxy.setExtraParam('refresh',  );

                                            Ext.getStore('testingstore').load();


                                 }

                        },
                ],



         masked: {
                xtype: 'loadmask',
                message: 'loading...'
            }, // masked

        emptyText: '<p class="no-search-results">No member record found matching that search</p>',
        itemTpl: Ext.create(
            'Ext.XTemplate',
            '<div class="tweet-wrapper">',
                '<table>',
                    '<tr>',

                        '<td>',
                        '   <div class="tweet">',
                        '       <h3>{invoiceId}</h3>',
                        '      <h3>Name: {billNumber}</h3>',
                        '       <h3>Point Avalaible : {invoiceDate} , Last Visited : {invoiceAmount}</h3>',

                        '   </div>',
                        '</td>',
                    '</tr>',
                '</table>',
            '</div>'


        ),



    },


});
Model.js

    Ext.define('bluebutton.model.BlueButton.Testing', {
    extend: 'Ext.data.Model',
    config: {

        idProperty: 'testingModel',
        fields: [
            {  name :'invoiceId'},
            {  name: 'billNumber' },
            {  name: 'invoiceDate' },
            {  name: 'invoiceAmount' },
            {  name :'downloadLink'},
            {  name: 'refresh' },



        ],

        proxy: {
            type: 'rest',
           url: 'http://192.168.251.108:8080/RESTFulExample/rest/json/metallica/invoicejsonPost',
            reader: 'json',
            actionMethods: {
                create: 'POST',
                read: 'GET',
                update: 'PUT',
                destroy: 'DELETE'
            },


                noCache: false, // get rid of the '_dc' url parameter

//                    extraParams: {
//                    userid: "test",
//                    // add as many as you need
//                },




            reader: {
                type: 'json',
                rootProperty: 'invoice'
            },

            writer: {
                type: 'json',

            },
        }



    }

});

刷新列表时,我需要将额外的参数“refresh”指定为true。另一方面,如果load more事件触发,我需要将paramrefresh指定为false。请给我一个解决方案。谢谢

我认为你不能按你要求的方式去做。但是您可以监听load事件并在那里更改刷新参数

{
xtype: 'store',
//Your Code
listeners: {
load: function(store){
  store.getProxy.setExtraParam('refresh', false);
}
}
}

希望对你有所帮助,我认为你不能按你要求的方式去做。但是您可以监听load事件并在那里更改刷新参数

{
xtype: 'store',
//Your Code
listeners: {
load: function(store){
  store.getProxy.setExtraParam('refresh', false);
}
}
}
希望能有帮助