我尝试过像这个How to properly activate an MVC View in Sencha Touch V2这样简单的MVC示例。 没关系,但是我想说我想使用视图在面板中添加一个按钮。
我试过跟随..
app.js:
Ext.Loader.setConfig({enabled: true});
Ext.application({
name: 'rpc',
appFolder: 'app',
controllers: ['Home'],
launch: function () {
Ext.create('Ext.tab.Panel',{
fullscreen: true,
tabBarPosition: 'bottom',
items:[{
title: 'Home',
iconCls: 'home',
html: '<img src="http://staging.sencha.com/img/sencha.png" />'
},{
title: 'Compose',
iconCls: 'compose',
xtype: 'mybutton'
}]
});
}
});
控制
Ext.define('rpc.controller.Home', {
extend: 'Ext.app.Controller',
views: ['home.Button'],
init: function() {
console.log('Home controller init method...');
}
});
视图
Ext.define('rpc.view.home.Button', {
extend: 'Ext.Panel',
alias: 'widget.mybutton',
initialize: function() {
this.items = [
{
xtype: 'button',
cls : 'demobtn',
flex : 1
}]
;
this.callParent();
}
});
我收到的结果是:
未捕获的TypeError:无法读取未定义的属性“长度”
错误在哪里?在Sencha Touch 2.0中使用MVC视图添加按钮的正确方法是什么?
感谢。
答案 0 :(得分:1)
尝试更改定义rpc.view.home.Button视图的方式,我不在我的视图中调用initialize(),我只是这样做:
Ext.define('rpc.view.home.Button', {
extend: 'Ext.Panel',
xtype: 'mybutton',
config: {
items = [
{
xtype: 'button',
cls : 'demobtn',
flex : 1
}
]
}
});