0

我是sencha touch 2的新手。当我按照教程中的说明创建博客视图后尝试实例化时。出现此错误“未捕获的错误:[Ext.createByAlias]无法创建无法识别的别名的实例:widget.blogpanel” ;

blog.js 的代码如下:


Ext.define('GS.view.blog',{
    extend:'Ext.navigation.View',

xtype: 'blog', config:{ title: 'Blog', iconCls: 'star', items: { xtype:'list', itemTpl:'{title}', store: { autoLoad: true, fields:['title','author','content'], proxy: { type:'jsonp', url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=http://feeds.feedburner.com/SenchaBlog', reader: { type:'json', rootProperty:'responseData.feed.entries', } } } } }

});

4

2 回答 2

1

您需要检查 Ext.application.views 以查看您的类是否已添加

于 2012-09-01T03:52:47.733 回答
-1

这是相对于这个Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: widget

您需要检查 Ext.Application 的“views”数组

于 2014-04-16T02:03:13.220 回答