Upload上传

文件选择上传和拖拽上传控件。

何时使用

上传是将信息(网页、文字、图片、视频等)通过网页或者上传工具发布到远程服务器上的过程。

  • 当需要上传一个或一些文件时。

  • 当需要展现上传的进度时。

  • 当需要使用拖拽交互时。

代码演示

Upload上传 - 图1

点击上传

经典款式,用户点击按钮弹出文件选择框。

  1. import { Upload, message, Button, Icon } from 'antd';
  2. const props = {
  3. name: 'file',
  4. action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  5. headers: {
  6. authorization: 'authorization-text',
  7. },
  8. onChange(info) {
  9. if (info.file.status !== 'uploading') {
  10. console.log(info.file, info.fileList);
  11. }
  12. if (info.file.status === 'done') {
  13. message.success(`${info.file.name} file uploaded successfully`);
  14. } else if (info.file.status === 'error') {
  15. message.error(`${info.file.name} file upload failed.`);
  16. }
  17. },
  18. };
  19. ReactDOM.render(
  20. <Upload {...props}>
  21. <Button>
  22. <Icon type="upload" /> Click to Upload
  23. </Button>
  24. </Upload>,
  25. mountNode,
  26. );

Upload上传 - 图2

已上传的文件列表

使用 defaultFileList 设置已上传的内容。

  1. import { Upload, Button, Icon } from 'antd';
  2. const props = {
  3. action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  4. onChange({ file, fileList }) {
  5. if (file.status !== 'uploading') {
  6. console.log(file, fileList);
  7. }
  8. },
  9. defaultFileList: [
  10. {
  11. uid: '1',
  12. name: 'xxx.png',
  13. status: 'done',
  14. response: 'Server Error 500', // custom error message to show
  15. url: 'http://www.baidu.com/xxx.png',
  16. },
  17. {
  18. uid: '2',
  19. name: 'yyy.png',
  20. status: 'done',
  21. url: 'http://www.baidu.com/yyy.png',
  22. },
  23. {
  24. uid: '3',
  25. name: 'zzz.png',
  26. status: 'error',
  27. response: 'Server Error 500', // custom error message to show
  28. url: 'http://www.baidu.com/zzz.png',
  29. },
  30. ],
  31. };
  32. ReactDOM.render(
  33. <Upload {...props}>
  34. <Button>
  35. <Icon type="upload" /> Upload
  36. </Button>
  37. </Upload>,
  38. mountNode,
  39. );

Upload上传 - 图3

完全控制的上传列表

使用 fileList 对列表进行完全控制,可以实现各种自定义功能,以下演示三种情况:

  • 上传列表数量的限制。

  • 读取远程路径并显示链接。

  1. import { Upload, Button, Icon } from 'antd';
  2. class MyUpload extends React.Component {
  3. state = {
  4. fileList: [
  5. {
  6. uid: '-1',
  7. name: 'xxx.png',
  8. status: 'done',
  9. url: 'http://www.baidu.com/xxx.png',
  10. },
  11. ],
  12. };
  13. handleChange = info => {
  14. let fileList = [...info.fileList];
  15. // 1. Limit the number of uploaded files
  16. // Only to show two recent uploaded files, and old ones will be replaced by the new
  17. fileList = fileList.slice(-2);
  18. // 2. Read from response and show file link
  19. fileList = fileList.map(file => {
  20. if (file.response) {
  21. // Component will show file.url as link
  22. file.url = file.response.url;
  23. }
  24. return file;
  25. });
  26. this.setState({ fileList });
  27. };
  28. render() {
  29. const props = {
  30. action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  31. onChange: this.handleChange,
  32. multiple: true,
  33. };
  34. return (
  35. <Upload {...props} fileList={this.state.fileList}>
  36. <Button>
  37. <Icon type="upload" /> Upload
  38. </Button>
  39. </Upload>
  40. );
  41. }
  42. }
  43. ReactDOM.render(<MyUpload />, mountNode);

Upload上传 - 图4

文件夹上传

支持上传一个文件夹里的所有文件。

  1. import { Upload, Button, Icon } from 'antd';
  2. ReactDOM.render(
  3. <Upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76" directory>
  4. <Button>
  5. <Icon type="upload" /> Upload Directory
  6. </Button>
  7. </Upload>,
  8. mountNode,
  9. );

Upload上传 - 图5

图片列表样式

上传文件为图片,可展示本地缩略图。IE8/9 不支持浏览器本地缩略图展示(Ref),可以写 thumbUrl 属性来代替。

  1. import { Upload, Button, Icon } from 'antd';
  2. const fileList = [
  3. {
  4. uid: '-1',
  5. name: 'xxx.png',
  6. status: 'done',
  7. url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
  8. thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
  9. },
  10. {
  11. uid: '-2',
  12. name: 'yyy.png',
  13. status: 'error',
  14. },
  15. ];
  16. const props = {
  17. action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  18. listType: 'picture',
  19. defaultFileList: [...fileList],
  20. };
  21. const props2 = {
  22. action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  23. listType: 'picture',
  24. defaultFileList: [...fileList],
  25. className: 'upload-list-inline',
  26. };
  27. ReactDOM.render(
  28. <div>
  29. <Upload {...props}>
  30. <Button>
  31. <Icon type="upload" /> Upload
  32. </Button>
  33. </Upload>
  34. <br />
  35. <br />
  36. <Upload {...props2}>
  37. <Button>
  38. <Icon type="upload" /> Upload
  39. </Button>
  40. </Upload>
  41. </div>,
  42. mountNode,
  43. );
  1. /* tile uploaded pictures */
  2. .upload-list-inline .ant-upload-list-item {
  3. float: left;
  4. width: 200px;
  5. margin-right: 8px;
  6. }
  7. .upload-list-inline .ant-upload-animate-enter {
  8. animation-name: uploadAnimateInlineIn;
  9. }
  10. .upload-list-inline .ant-upload-animate-leave {
  11. animation-name: uploadAnimateInlineOut;
  12. }

Upload上传 - 图6

上传前转换文件

使用 transformFile 转换上传的文件(例如添加水印)。

  1. import { Upload, Button, Icon } from 'antd';
  2. const props = {
  3. action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  4. transformFile(file) {
  5. return new Promise(resolve => {
  6. const reader = new FileReader();
  7. reader.readAsDataURL(file);
  8. reader.onload = () => {
  9. const canvas = document.createElement('canvas');
  10. const img = document.createElement('img');
  11. img.src = reader.result;
  12. img.onload = () => {
  13. const ctx = canvas.getContext('2d');
  14. ctx.drawImage(img, 0, 0);
  15. ctx.fillStyle = 'red';
  16. ctx.textBaseline = 'middle';
  17. ctx.fillText('Ant Design', 20, 20);
  18. canvas.toBlob(resolve);
  19. };
  20. };
  21. });
  22. },
  23. };
  24. ReactDOM.render(
  25. <div>
  26. <Upload {...props}>
  27. <Button>
  28. <Icon type="upload" /> Upload
  29. </Button>
  30. </Upload>
  31. </div>,
  32. mountNode,
  33. );

Upload上传 - 图7

用户头像

点击上传用户头像,并使用 beforeUpload 限制用户上传的图片格式和大小。

beforeUpload 的返回值可以是一个 Promise 以支持异步处理,如服务端校验等:示例

  1. import { Upload, Icon, message } from 'antd';
  2. function getBase64(img, callback) {
  3. const reader = new FileReader();
  4. reader.addEventListener('load', () => callback(reader.result));
  5. reader.readAsDataURL(img);
  6. }
  7. function beforeUpload(file) {
  8. const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png';
  9. if (!isJpgOrPng) {
  10. message.error('You can only upload JPG/PNG file!');
  11. }
  12. const isLt2M = file.size / 1024 / 1024 < 2;
  13. if (!isLt2M) {
  14. message.error('Image must smaller than 2MB!');
  15. }
  16. return isJpgOrPng && isLt2M;
  17. }
  18. class Avatar extends React.Component {
  19. state = {
  20. loading: false,
  21. };
  22. handleChange = info => {
  23. if (info.file.status === 'uploading') {
  24. this.setState({ loading: true });
  25. return;
  26. }
  27. if (info.file.status === 'done') {
  28. // Get this url from response in real world.
  29. getBase64(info.file.originFileObj, imageUrl =>
  30. this.setState({
  31. imageUrl,
  32. loading: false,
  33. }),
  34. );
  35. }
  36. };
  37. render() {
  38. const uploadButton = (
  39. <div>
  40. <Icon type={this.state.loading ? 'loading' : 'plus'} />
  41. <div className="ant-upload-text">Upload</div>
  42. </div>
  43. );
  44. const { imageUrl } = this.state;
  45. return (
  46. <Upload
  47. name="avatar"
  48. listType="picture-card"
  49. className="avatar-uploader"
  50. showUploadList={false}
  51. action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
  52. beforeUpload={beforeUpload}
  53. onChange={this.handleChange}
  54. >
  55. {imageUrl ? <img src={imageUrl} alt="avatar" style={{ width: '100%' }} /> : uploadButton}
  56. </Upload>
  57. );
  58. }
  59. }
  60. ReactDOM.render(<Avatar />, mountNode);
  1. .avatar-uploader > .ant-upload {
  2. width: 128px;
  3. height: 128px;
  4. }

Upload上传 - 图8

照片墙

用户可以上传图片并在列表中显示缩略图。当上传照片数到达限制后,上传按钮消失。

  1. import { Upload, Icon, Modal } from 'antd';
  2. function getBase64(file) {
  3. return new Promise((resolve, reject) => {
  4. const reader = new FileReader();
  5. reader.readAsDataURL(file);
  6. reader.onload = () => resolve(reader.result);
  7. reader.onerror = error => reject(error);
  8. });
  9. }
  10. class PicturesWall extends React.Component {
  11. state = {
  12. previewVisible: false,
  13. previewImage: '',
  14. fileList: [
  15. {
  16. uid: '-1',
  17. name: 'image.png',
  18. status: 'done',
  19. url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
  20. },
  21. {
  22. uid: '-2',
  23. name: 'image.png',
  24. status: 'done',
  25. url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
  26. },
  27. {
  28. uid: '-3',
  29. name: 'image.png',
  30. status: 'done',
  31. url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
  32. },
  33. {
  34. uid: '-4',
  35. name: 'image.png',
  36. status: 'done',
  37. url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
  38. },
  39. {
  40. uid: '-5',
  41. name: 'image.png',
  42. status: 'error',
  43. },
  44. ],
  45. };
  46. handleCancel = () => this.setState({ previewVisible: false });
  47. handlePreview = async file => {
  48. if (!file.url && !file.preview) {
  49. file.preview = await getBase64(file.originFileObj);
  50. }
  51. this.setState({
  52. previewImage: file.url || file.preview,
  53. previewVisible: true,
  54. });
  55. };
  56. handleChange = ({ fileList }) => this.setState({ fileList });
  57. render() {
  58. const { previewVisible, previewImage, fileList } = this.state;
  59. const uploadButton = (
  60. <div>
  61. <Icon type="plus" />
  62. <div className="ant-upload-text">Upload</div>
  63. </div>
  64. );
  65. return (
  66. <div className="clearfix">
  67. <Upload
  68. action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
  69. listType="picture-card"
  70. fileList={fileList}
  71. onPreview={this.handlePreview}
  72. onChange={this.handleChange}
  73. >
  74. {fileList.length >= 8 ? null : uploadButton}
  75. </Upload>
  76. <Modal visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  77. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  78. </Modal>
  79. </div>
  80. );
  81. }
  82. }
  83. ReactDOM.render(<PicturesWall />, mountNode);
  1. /* you can make up upload button and sample style by using stylesheets */
  2. .ant-upload-select-picture-card i {
  3. font-size: 32px;
  4. color: #999;
  5. }
  6. .ant-upload-select-picture-card .ant-upload-text {
  7. margin-top: 8px;
  8. color: #666;
  9. }

Upload上传 - 图9

拖拽上传

把文件拖入指定区域,完成上传,同样支持点击上传。

设置 multiple 后,在 IE10+ 可以一次上传多个文件。

  1. import { Upload, Icon, message } from 'antd';
  2. const { Dragger } = Upload;
  3. const props = {
  4. name: 'file',
  5. multiple: true,
  6. action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  7. onChange(info) {
  8. const { status } = info.file;
  9. if (status !== 'uploading') {
  10. console.log(info.file, info.fileList);
  11. }
  12. if (status === 'done') {
  13. message.success(`${info.file.name} file uploaded successfully.`);
  14. } else if (status === 'error') {
  15. message.error(`${info.file.name} file upload failed.`);
  16. }
  17. },
  18. };
  19. ReactDOM.render(
  20. <Dragger {...props}>
  21. <p className="ant-upload-drag-icon">
  22. <Icon type="inbox" />
  23. </p>
  24. <p className="ant-upload-text">Click or drag file to this area to upload</p>
  25. <p className="ant-upload-hint">
  26. Support for a single or bulk upload. Strictly prohibit from uploading company data or other
  27. band files
  28. </p>
  29. </Dragger>,
  30. mountNode,
  31. );

Upload上传 - 图10

手动上传

beforeUpload 返回 false 后,手动上传文件。

  1. import { Upload, Button, Icon, message } from 'antd';
  2. import reqwest from 'reqwest';
  3. class Demo extends React.Component {
  4. state = {
  5. fileList: [],
  6. uploading: false,
  7. };
  8. handleUpload = () => {
  9. const { fileList } = this.state;
  10. const formData = new FormData();
  11. fileList.forEach(file => {
  12. formData.append('files[]', file);
  13. });
  14. this.setState({
  15. uploading: true,
  16. });
  17. // You can use any AJAX library you like
  18. reqwest({
  19. url: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  20. method: 'post',
  21. processData: false,
  22. data: formData,
  23. success: () => {
  24. this.setState({
  25. fileList: [],
  26. uploading: false,
  27. });
  28. message.success('upload successfully.');
  29. },
  30. error: () => {
  31. this.setState({
  32. uploading: false,
  33. });
  34. message.error('upload failed.');
  35. },
  36. });
  37. };
  38. render() {
  39. const { uploading, fileList } = this.state;
  40. const props = {
  41. onRemove: file => {
  42. this.setState(state => {
  43. const index = state.fileList.indexOf(file);
  44. const newFileList = state.fileList.slice();
  45. newFileList.splice(index, 1);
  46. return {
  47. fileList: newFileList,
  48. };
  49. });
  50. },
  51. beforeUpload: file => {
  52. this.setState(state => ({
  53. fileList: [...state.fileList, file],
  54. }));
  55. return false;
  56. },
  57. fileList,
  58. };
  59. return (
  60. <div>
  61. <Upload {...props}>
  62. <Button>
  63. <Icon type="upload" /> Select File
  64. </Button>
  65. </Upload>
  66. <Button
  67. type="primary"
  68. onClick={this.handleUpload}
  69. disabled={fileList.length === 0}
  70. loading={uploading}
  71. style={{ marginTop: 16 }}
  72. >
  73. {uploading ? 'Uploading' : 'Start Upload'}
  74. </Button>
  75. </div>
  76. );
  77. }
  78. }
  79. ReactDOM.render(<Demo />, mountNode);

Upload上传 - 图11

自定义预览

自定义本地预览,用于处理非图片格式文件(例如视频文件)。

  1. import { Upload, Button, Icon } from 'antd';
  2. const props = {
  3. action: '//jsonplaceholder.typicode.com/posts/',
  4. listType: 'picture',
  5. previewFile(file) {
  6. console.log('Your upload file:', file);
  7. // Your process logic. Here we just mock to the same file
  8. return fetch('https://next.json-generator.com/api/json/get/4ytyBoLK8', {
  9. method: 'POST',
  10. body: file,
  11. })
  12. .then(res => res.json())
  13. .then(({ thumbnail }) => thumbnail);
  14. },
  15. };
  16. ReactDOM.render(
  17. <div>
  18. <Upload {...props}>
  19. <Button>
  20. <Icon type="upload" /> Upload
  21. </Button>
  22. </Upload>
  23. </div>,
  24. mountNode,
  25. );

Upload上传 - 图12

阿里云 OSS

使用阿里云 OSS 上传示例.

  1. import { Form, Upload, message, Button, Icon } from 'antd';
  2. class AliyunOSSUpload extends React.Component {
  3. state = {
  4. OSSData: {},
  5. };
  6. async componentDidMount() {
  7. await this.init();
  8. }
  9. init = async () => {
  10. try {
  11. const OSSData = await this.mockGetOSSData();
  12. this.setState({
  13. OSSData,
  14. });
  15. } catch (error) {
  16. message.error(error);
  17. }
  18. };
  19. // Mock get OSS api
  20. // https://help.aliyun.com/document_detail/31988.html
  21. mockGetOSSData = () => {
  22. return {
  23. dir: 'user-dir/',
  24. expire: '1577811661',
  25. host: '//www.mocky.io/v2/5cc8019d300000980a055e76',
  26. accessId: 'c2hhb2RhaG9uZw==',
  27. policy: 'eGl4aWhhaGFrdWt1ZGFkYQ==',
  28. signature: 'ZGFob25nc2hhbw==',
  29. };
  30. };
  31. onChange = ({ fileList }) => {
  32. const { onChange } = this.props;
  33. console.log('Aliyun OSS:', fileList);
  34. if (onChange) {
  35. onChange([...fileList]);
  36. }
  37. };
  38. onRemove = file => {
  39. const { value, onChange } = this.props;
  40. const files = value.filter(v => v.url !== file.url);
  41. if (onChange) {
  42. onChange(files);
  43. }
  44. };
  45. transformFile = file => {
  46. const { OSSData } = this.state;
  47. const suffix = file.name.slice(file.name.lastIndexOf('.'));
  48. const filename = Date.now() + suffix;
  49. file.url = OSSData.dir + filename;
  50. return file;
  51. };
  52. getExtraData = file => {
  53. const { OSSData } = this.state;
  54. return {
  55. key: file.url,
  56. OSSAccessKeyId: OSSData.accessId,
  57. policy: OSSData.policy,
  58. Signature: OSSData.signature,
  59. };
  60. };
  61. beforeUpload = async () => {
  62. const { OSSData } = this.state;
  63. const expire = OSSData.expire * 1000;
  64. if (expire < Date.now()) {
  65. await this.init();
  66. }
  67. return true;
  68. };
  69. render() {
  70. const { value } = this.props;
  71. const props = {
  72. name: 'file',
  73. fileList: value,
  74. action: this.state.OSSData.host,
  75. onChange: this.onChange,
  76. onRemove: this.onRemove,
  77. transformFile: this.transformFile,
  78. data: this.getExtraData,
  79. beforeUpload: this.beforeUpload,
  80. };
  81. return (
  82. <Upload {...props}>
  83. <Button>
  84. <Icon type="upload" /> Click to Upload
  85. </Button>
  86. </Upload>
  87. );
  88. }
  89. }
  90. class FormPage extends React.Component {
  91. render() {
  92. const { getFieldDecorator } = this.props.form;
  93. return (
  94. <Form onSubmit={this.handleSubmit} labelCol={{ span: 4 }}>
  95. <Form.Item label="Photos">{getFieldDecorator('photos')(<AliyunOSSUpload />)}</Form.Item>
  96. </Form>
  97. );
  98. }
  99. }
  100. const WrappedFormPage = Form.create()(FormPage);
  101. ReactDOM.render(<WrappedFormPage />, mountNode);

API

参数说明类型默认值版本
accept接受上传的文件类型, 详见 input accept Attributestring
action上传的地址string|(file) => Promise
method上传请求的 http methodstring'post'3.25.0
directory支持上传文件夹(caniusebooleanfalse3.7.0
beforeUpload上传文件之前的钩子,参数为上传的文件,若返回 false 则停止上传。支持返回一个 Promise 对象,Promise 对象 reject 时则停止上传,resolve 时开始上传( resolve 传入 FileBlob 对象则上传 resolve 传入对象)。注意:IE9 不支持该方法(file, fileList) => boolean | Promise
customRequest通过覆盖默认的上传行为,可以自定义自己的上传实现Function
data上传所需额外参数或返回上传额外参数的方法object|(file) => object
defaultFileList默认已经上传的文件列表object[]
disabled是否禁用booleanfalse
fileList已经上传的文件列表(受控),使用此参数时,如果遇到 onChange 只调用一次的问题,请参考 #2423object[]
headers设置上传的请求头部,IE10 以上有效object
listType上传列表的内建样式,支持三种基本样式 text, picturepicture-cardstring'text'
multiple是否支持多选文件,ie10+ 支持。开启后按住 ctrl 可选择多个文件booleanfalse
name发到后台的文件参数名string'file'
previewFile自定义文件预览逻辑(file: File | Blob) => Promise<dataURL: string>3.17.0
showUploadList是否展示文件列表, 可设为一个对象,用于单独设定 showPreviewIcon, showRemoveIconshowDownloadIconBoolean or { showPreviewIcon?: boolean, showRemoveIcon?: boolean, showDownloadIcon?: boolean }true
supportServerRender服务端渲染时需要打开这个booleanfalse
withCredentials上传请求时是否携带 cookiebooleanfalse
openFileDialogOnClick点击打开文件对话框booleantrue3.10.0
onChange上传文件改变时的状态,详见 onChangeFunction
onPreview点击文件链接或预览图标时的回调Function(file)
onRemove 点击移除文件时的回调,返回值为 false 时不移除。支持返回一个 Promise 对象,Promise 对象 resolve(false) 或 reject 时不移除。 Function(file): boolean | Promise
onDownload点击下载文件时的回调,如果没有指定,则默认跳转到文件 url 对应的标签页。Function(file): void跳转新标签页
transformFile 在上传之前转换文件。支持返回一个 Promise 对象 Function(file): string | Blob | File | Promise<string | Blob | File>3.21.0

onChange

上传中、完成、失败都会调用这个函数。

文件状态改变的回调,返回为:

  1. {
  2. file: { /* ... */ },
  3. fileList: [ /* ... */ ],
  4. event: { /* ... */ },
  5. }
  • file 当前操作的文件对象。
  1. {
  2. uid: 'uid', // 文件唯一标识,建议设置为负数,防止和内部产生的 id 冲突
  3. name: 'xx.png' // 文件名
  4. status: 'done', // 状态有:uploading done error removed
  5. response: '{"status": "success"}', // 服务端响应内容
  6. linkProps: '{"download": "image"}', // 下载链接额外的 HTML 属性
  7. }
  • fileList 当前的文件列表。

  • event 上传中的服务端响应内容,包含了上传进度等信息,高级浏览器支持。

FAQ

服务端如何实现?

如何显示下载链接?

请使用 fileList 属性设置数组项的 url 属性进行展示控制。

customRequest 怎么使用?

请参考 https://github.com/react-component/upload#customrequest

IE8/9 问题

请参考 https://github.com/react-component/upload#ie89-note