Extjs Config和Mixins
程序员文章站
2022-04-26 14:09:58
...
Extjs 4中,为类型系统引入了Config概念,Config就是配置项的意思,用{configItem1:value1...}表示,在对象构造的时候,会调用this.initConfig(config)将配置项初始化,每个配置项自动生成4个函数:get set reset apply。
Mixins也是新概念,相当于调用Ext.apply(this,other)将other类中的方法合并到当前的类中,也相当于另一种形式的继承。
下面用代码测试一下,使用了Siesta测试框架,有兴趣可以google一下,很强大的测试系统。
引自:http://kldn.iteye.com/blog/1386622
Mixins也是新概念,相当于调用Ext.apply(this,other)将other类中的方法合并到当前的类中,也相当于另一种形式的继承。
下面用代码测试一下,使用了Siesta测试框架,有兴趣可以google一下,很强大的测试系统。
StartTest(function(t) { t.diag("Extjs common test"); t.ok(Ext,"Ext is here"); Ext.define("test.Talk", { talk:function() { return 'talk' } } ); Ext.define("test.Person", { mixins: { everyOneNeedTalk:"test.Talk" } }); var p = Ext.create("test.Person"); t.is('talk',p.talk(),'The method is mixin') Ext.define("test.Student",{ config:{ gender:'boy' }, constructor:function(config){ this.initConfig(config); //这里需要调用initConfig,否则不会自动生成getter 和 setter } }); var s = Ext.create('test.Student') t.is(s.getGender(),'boy','generate getter') s.setGender('girl'); t.is(s.getGender(),'girl','generate setter') t.done(); // Optional, marks the correct exit point from the test });
引自:http://kldn.iteye.com/blog/1386622
推荐阅读
-
IIS7伪静态web.config配置的方法和规则
-
详解C#App.config和Web.config加密
-
IIS7伪静态web.config配置的方法和规则
-
详解C#App.config和Web.config加密
-
Extjs4如何处理后台json数据中日期和时间
-
搭建EXTJS和STRUTS2框架(ext和struts2简单实例)
-
用自定义的节来扩展web.config和machine.config配置文件的结构
-
ASP.NET MVC异步获取和刷新ExtJS6 TreeStore
-
跟我学SpringCloud | 第七篇:Spring Cloud Config 配置中心高可用和refresh
-
Extjs4如何处理后台json数据中日期和时间