antd Upload 中如何去除上传列表显示?
How to remove uploaded list to display in antd Upload?
我在我的聊天应用程序中使用上传组件来允许用户在聊天室上传他们的照片。但是上传图片后,文件名显示在底部,我想将其消失,但我做不到。它有一个 showUploadList 属性,但是当我将它设置为 false 时,它不起作用。
<Upload
action={`${url}api/v1/chat/messages/${chatID}`}
name="billig"
headers={{ Authorization: `Token ${token}` }}
onChange={this.onChange}
fileList={this.state.fileList}
multiple="true"
accept=".png,.jpeg"
showUploadList="false">
picture1 : before upload
picture2 : after upload
使用
showUploadList={false}
而不是
showUploadList="false"
我在我的聊天应用程序中使用上传组件来允许用户在聊天室上传他们的照片。但是上传图片后,文件名显示在底部,我想将其消失,但我做不到。它有一个 showUploadList 属性,但是当我将它设置为 false 时,它不起作用。
<Upload
action={`${url}api/v1/chat/messages/${chatID}`}
name="billig"
headers={{ Authorization: `Token ${token}` }}
onChange={this.onChange}
fileList={this.state.fileList}
multiple="true"
accept=".png,.jpeg"
showUploadList="false">
picture1 : before upload picture2 : after upload
使用
showUploadList={false}
而不是
showUploadList="false"