1

这是我的商店课程。我正在尝试完成 POST 请求。这是我的代码;一切正常,当我从 Firebug 检查它时,我也得到了服务器响应。但唯一的问题是,当我Params tab在 firefox 中查看时,我看到_dc 1341141752113了,当我Post tab在 firebug 中查看时,我看到了

limit   25
page    1
start   0

1.) 这些是我没有在我的代码中传递的一些参数。为什么我得到这些?

Ext.define('Pro.store.Animal',{
    extend:'Ext.data.Store',
    model:'Pro.model.Animal',

    proxy: {
        actionMethods : {

            read   : 'POST'
        },
        type: 'ajax',
        url : '/projectmy/animal.php'

    }

    });

2.) 如果我想将参数传递给 PHP 文件,我应该如何编辑我的代码以传递参数?

4

2 回答 2

5

这些参数是默认值。如果您使用分页工具栏或其他控件来浏览数据,则需要它们。对于附加参数,您可以在您的代理中使用 extraParams

于 2012-07-02T04:56:48.070 回答
2
Ext.define('App.store.StoreName', {
    extend: 'Ext.data.Store',

    requires: [
        'App.model.StoreName'
    ],

    constructor: function(cfg) {
        var me = this;
        cfg = cfg || {};
        me.callParent([Ext.apply({
            storeId: 'stid',
            model: 'App.model.MyModel',
            proxy: {
                type: 'ajax',
                actionMethods: 'POST',
                api: {
                    read: '../myreadPhp.php',

                },
                reader: {
                    type: 'json'
                }
            },
            listeners: {
                beforeload: {
                    fn: me.onArraystoreBeforeLoad,
                    scope: me
                }
            }
        }, cfg)]);
    },

    onArraystoreBeforeLoad: function(store, operation, options) {
        this.proxy.extraParams.yournameparameter = "pass some name here"; 
        this.proxy.extraParams.yourageparamete = "pass your age here"; 
    }

});

myreadPhp.php将期待参数yournameparameteryourageparamete

于 2012-11-15T08:43:50.580 回答