欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Extjs4---Uncaught TypeError: Cannot read property ‘items’ of undefined

程序员文章站 2022-05-07 17:00:39
在做 The MVC Application Architecture 时遇到了一个错误: "Uncaught TypeError: Cannot read prop...
在做
The MVC Application Architecture 时遇到了一个错误:
"Uncaught TypeError: Cannot read property ‘items’ of undefined"
找了很久才发现是因为没有在List.js中配置colums
 需要添加colums的代码:
[javascript] 
Ext.define( 
    'AM.view.user.List', 
    { 
        extend:'Ext.grid.Panel', 
        alias:'widget.userlist', 
        title:'All Users', 
        store:'Users', 
        columns:[ 
                 {header:'Name',dataIndex:'name'}, 
                 {header:'Email',dataIndex:'email'} 
        ] 
    } 
);