Touch 中是否有更好的默认方式?
我接触原型,但 Ext.create 告诉我去见鬼(就像 Ext.define 一样)所以我回到做
ViewPort= function(c){
var default={
fullscreen:true,
items:[]
};Ext.apply(default,c);config = default;
ViewPort.superclass.constructor.call(this,config);
};
Ext.extend( ViewPort, Ext.Panel);
然后用功能和东西操作配置。 有没有更好的方法来完成“默认”变量对我的作用?
I prototype in touch, but Ext.create tells me to go to heck ( as does Ext.define ) So i'm back to doing
ViewPort= function(c){
var default={
fullscreen:true,
items:[]
};Ext.apply(default,c);config = default;
ViewPort.superclass.constructor.call(this,config);
};
Ext.extend( ViewPort, Ext.Panel);
And then manipulating the config with functions and stuff.
Is there a better way to do what the "default" variable does for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这更短,也更整洁
This is shorter,and much neater