我是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',
}
}
}
}
}
});
答案 0 :(得分:1)
您需要检查Ext.application.views以查看您的课程是否已添加
答案 1 :(得分:-1)
这与此Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: widget有关。
您需要检查Ext.Application的“views”数组