Ext.bind在ExtJS中看不到函数

时间:2014-07-23 14:48:55

标签: javascript extjs extjs4

我正在尝试修改Portlet示例并将其移植到我们的程序中。代码如下所示:

Ext.create('Ext.container.Viewport',{
            id: 'app-viewport', //creates viewport
            layout: {
                type: 'border',
                padding: '0 5 5 5' // pad the layout from the window edges
            },

            onPortletClose: function(portlet) {
                this.showMsg('"' + portlet.title + '" was removed');
            },

            showMsg: function(msg) {
                var el = Ext.get('app-msg'),
                    msgId = Ext.id();

                this.msgId = msgId;
                el.update(msg).show();

                Ext.defer(this.clearMsg, 3000, this, [msgId]);
            },

            clearMsg: function(msgId) {
                if (msgId === this.msgId) {
                    Ext.get('app-msg').hide();
                }
            },

            items: [{
                id: 'app-header',
                xtype: 'box',
                region: 'north',
                height: 40,
                html: 'Ext Welcome'
            },{
                xtype: 'container',
                region: 'center',
                layout: 'border',
                items: [{
                    id: 'app-options', //Creates the Options panel on the left
                    title: 'Options',
                    region: 'west',
                    animCollapse: true,
                    width: 200,
                    minWidth: 150,
                    maxWidth: 400,
                    split: true,
                    collapsible: true,
                    layout:{
                        type: 'accordion',
                        animate: true
                    },
                    items: [{
                        html: content,
                        title:'Navigation',
                        autoScroll: true,
                        border: false,
                        iconCls: 'nav'
                    },{
                        title:'Settings',
                        html: content,
                        border: false,
                        autoScroll: true,
                        iconCls: 'settings'
                    }]
                },{
                    id: 'app-portal', //Creates the panel where the portal drop zones are.
                    xtype: 'mainpanel',
                    region: 'center',
                    items: [{
                        id: 'col-1', //Each column represents a drop zone column. If we add more there are more created and width gets adjusted accordingly
                        items: [{
                            id: 'portlet-1',
                            title: 'Portlet 1',
                            html: content,
                            listeners: {
                                'close': Ext.bind(this.onPortletClose, this)
                        },{
                            id: 'portlet-2',
                            title: 'Portlet 2',
                            html: content,
                            listeners: {
                                'close': Ext.bind(this.onPortletClose, this)
                            }
                        }]
                    },{
                        id: 'col-2',
                        items: [{
                            id: 'portlet-3',
                            title: 'Portlet 3',
                            html: content,
                            listeners: {
                                'close': Ext.bind(this.onPortletClose, this)
                            }
                        }]
                    },{
                        id: 'col-3',
                        items: [{
                            id: 'portlet-4',
                            title: 'Portlet 4',
                            html: content,
                            listeners: {
                                'close': Ext.bind(this.onPortletClose, this)
                            }
                        }]
                    }]
                }]
            }]
        });

问题是Ext.bind无法读取onPortletClose函数,浏览器给我一个:

Uncaught TypeError: Cannot read property 'apply' of undefined错误。我检查了堆栈,主要是在Ext.bind(fn,scope)中,fn未定义,因此无法读取处理函数。我的应用程序和示例之间的区别在于我将它直接添加到JSP的Ext.onReady()中,而在示例中,所有这些都是通过Ext.apply(this, {...})添加的。我真的很困惑。我尝试了各种噱头来强制视口上的范围,但似乎Ext.bind()内部的任何东西都失去了与外界或其他东西的联系。我之前使用过Ext.bind(),虽然它在initComponent配置中,但仍然很好。那是强制性的吗?如果没有,那么问题是什么?

1 个答案:

答案 0 :(得分:2)

在此处理解this的含义非常重要(或者在使用JavaScript或ExtJS时一般情况下)。

在全局上下文中,this引用全局对象,也称为全局window变量。这是Ext.onReady函数中的情况:

Ext.onReady(function() {
    console.log(this === window);
    // -> true
    // because this is the global object
});

在对象上下文中,默认情况下 this指的是函数的所有者对象(有很多方法,实际上这正是你希望使用{{1 }}):

Ext.bind

现在,这正是您的案例与示例中的案例之间存在差异的原因。

当使用var obj = { prop: 'My text property', fn: function() { console.log(this.prop); // -> My text property // because "this" refers to our object "obj" } }; Ext.onReady的方法时 - 如上所述 - 将引用全局对象,当然它没有函数this

使用示例中的方法时,onPortletClose是从this内部访问的,initComponent是派生视口类的成员函数,因此this引用组件实例(=拥有对象),允许您访问您的功能。

Ext.define('MyViewport', {
    extend: 'Ext.container.Viewport',

    onPortletClose: function(portlet) {
        this.showMsg('"' + portlet.title + '" was removed');
    },

    initComponent: function() {
        console.log(this);
        // -> the instance of your viewport class

        Ext.apply(this, {
            items:[{
                xtype: 'panel',
                title: 'Portlet 1',
                listeners: {
                    'close': Ext.bind(this.onPortletClose, this)
                }
            }]
        });

        this.callParent();
    }
});

旁注

Ext.apply

Ext.apply实际上只是将所有属性从一个对象复制到另一个对象,所以在这种情况下,它只是该对象的所有属性应用于this的一种便捷方式。一个函数调用。你也可以使用:

this.items = [...];

更改侦听器的范围

在向组件添加侦听器时,您不需要使用Ext.bind,只需在scope对象中提供listeners配置:

listeners: {
    close: function() {...},
    scope: this
}

外部来源

如果你想深入一点(我建议你),你可能想在MDN (Mozilla Developer Network)阅读更多关于 this 的内容。