2011-06-22 80 views
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})]; 

回答

2

你能做到這一點?

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

或者您是否需要稍後再引用arguments對象?

+0

只是拋出默認參數,所以正是我需要的,謝謝。 – Alex