只有注册用户登录后才能阅读该文。
随笔分类 - ExtJS
ExtJS开发的相关技术文章
只有注册用户登录后才能阅读该文。
摘要:/*** model工厂类*/Ext.define("factory.ModelFactory",{ statics:{ //数据类模型的集合 models:new Ext.util.MixedCollection(), //字段集合 fields:new Ext.util.MixedCollection(), getModelByName:function(modelName,excludes){ //不需要的字段 var nofields = {}; if(excludes){ nofields = {"excludes":excludes}; }
阅读全文