1

我想做相当于...

//Nonsensical
config.items=[Ext.create('Foo.register.AccountTypeForm',{config:arguments.hidden=true})];

//works ofc, but it looks untidy
arguments.hidden=true;
config.items=[Ext.create('Foo.register.AccountTypeForm',{config:arguments})];
4

1 回答 1

2

你能做到吗?

config.items=[Ext.create('Foo.register.AccountTypeForm',
 {config:{hidden:true}})];

或者您以后需要再次引用参数对象吗?

于 2011-06-22T17:32:15.513 回答