What are differences between Ext.create() and Ext.define() in SenCha Touch

可紊 提交于 2019-12-01 03:48:54

define is for declaring a class.

Ext.define('Foo', {
    extend: 'Bar'
});

// Similar to:
public class Foo : Bar {
}

create is for creating an instance:

var o = Ext.create('Foo'); // Can also have var o = new Foo();

// Similar to:
Foo o = new Foo();

Ext.create - to create an instance of a pre-defined class. - the class was defined using Ext.define - used to define the data and behavior of a component. which will be used later.

Ext.define - to define your own class definition - reusable component. - instances can be created using Ext.create API.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!