码迷,mamicode.com
首页 > Web开发 > 详细

[Ext JS 4] Extjs 之 initComponent 和 constructor的区别

时间:2014-07-02 10:44:04      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   使用   文件   os   

initComponent 和 constructor是什么

Extjs 提供的组件还是挺丰富的, 但是有时候需求更丰富。

当Extjs 原生的组件无法实现我们的要求的时候, 就需要扩展Extjs 的组件实现自制组件了。

除了这种使用状况, 有时候对于一些相同却有使用很多的配置, 可能像把它独立出来,单独设为一种组件供大家调用, 节省开发时间和提高代码重用度。

initComponent 和 constructor 就是Extjs 提供用来实现继承和扩展的方式。


Ext.define 实现扩展

在Extjs 中使用Ext.define来实现扩展, initComponent 和 constructor的使用方式类似

	Ext.define(‘Ext.oscar999.button.MyButton‘, {
		extend : ‘Ext.button.Button‘,
		initComponent : function() {
			//do something
		},
		constructor : function() {
			//do something
		}
	});

一般状况上,加上 xtype 的定义, 类似:

bubuko.com,布布扣

(在旧的Extjs 版本中使用 Ext.extend 实现扩展)


那么这两种用法究竟该如何使用? 两者的使用又有什么差别呢?

initComponent 和 constructor区别于联系

1. initComponent这个方法是在Ext.Component的构造函数(constructor)中调用的,只有直接或间接继承自 Ext.Component的类才会在constructor里调用initComponent方法

看一下  Ext.AbstractComponent的源码文件 src/AbstractComponent.js

在  constructor方法中调用了initComponent

bubuko.com,布布扣

2.

   1)自定义类中的 initComponent 函数中必须调用 callParent();否则 调用者无法初始化这个对象

   2)针对button 这样的扩展组件来说,自定义类中的  constructor ,需要调用callParent( arguments);否则 调用者无法初始化这个对象

this.callParent(arguments);
这里的arguments 是需要的。


(在Extjs 4 之前的版本中, 可能会看到比较多的XXX.superclass.constructor.call 写法)

sencha 的官网中有一篇针对这两个区别的讨论:

http://www.sencha.com/forum/showthread.php?47210-constructor-Vs-initComponent

不过语法是基于Extjs 3 来讨论的, 笔者觉得作用不是很大。


就笔者实际的开发经验来看, 基本上使用initComponent 就可以达到开发的要求了。



[Ext JS 4] Extjs 之 initComponent 和 constructor的区别,布布扣,bubuko.com

[Ext JS 4] Extjs 之 initComponent 和 constructor的区别

标签:style   http   color   使用   文件   os   

原文地址:http://blog.csdn.net/oscar999/article/details/33743171

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!