Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Extjs 每个都不工作_Extjs_Extjs3 - Fatal编程技术网

Extjs 每个都不工作

Extjs 每个都不工作,extjs,extjs3,Extjs,Extjs3,我正在使用extjs3.2网格。我有一个存储,如下面链接中所述 什么是错误消息?我没有收到任何错误消息,而您没有收到警报?或者什么不起作用?存储区是否包含记录(是store.getCount()greater 0?)是,在警报中,我没有收到任何信息,还有我的第二个问题? var store = new Ext.data.Store({ id : 'user', proxy : proxy,

我正在使用extjs3.2网格。我有一个存储,如下面链接中所述


什么是错误消息?我没有收到任何错误消息,而您没有收到警报?或者什么不起作用?存储区是否包含记录(是
store.getCount()
greater 0?)是,在警报中,我没有收到任何信息,还有我的第二个问题?
var store = new Ext.data.Store({
                    id : 'user',
                    proxy : proxy,
                    reader : reader,
                    writer : writer, // <-- plug a DataWriter into the store
                    url: 'aaa/view.action',
                    remoteSort: true,


                    autoSave : false
                // <-- false would delay executing create, update, destroy
                // requests until specifically told to do so with some [save]
                // buton.
                }); 
store.each(function(r) {
            alert(r.get('col'));
               })