如何删除 antd Upload 中显示的上传列表?

Mos*_*fan 4 upload chat reactjs antd

我在聊天应用程序中使用上传组件来允许用户在聊天室上传他们的图片。但是上传图片后,文件名显示在底部,我想将其消失,但我做不到。它有一个 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">
Run Code Online (Sandbox Code Playgroud)

图1:上传前 图2:上传后

小智 9

使用

showUploadList={false}

代替

showUploadList="false"