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})];
只是拋出默認參數,所以正是我需要的,謝謝。 – Alex