Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
提交表单后,有什么方法可以重置 Filefield 吗?
我试过了
Form.reset()
或者
Ext.getCmp('fileupload').reset();
什么也没发生。
我猜您的 Form格式为xtype。在这种情况下,您需要先获取实际表单,否则您将在面板上调用 .reset() 而不是表单:
Form.getForm().reset()