Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 1.03 KB

basic.md

File metadata and controls

46 lines (39 loc) · 1.03 KB
order title
0
zh-CN en-US
点击上传
Upload by clicking

zh-CN

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

en-US

Classic mode. File selection dialog pops up when upload button is clicked.

import React from 'react';
import { Upload, message, Button } from 'antd';
import { UploadOutlined } from '@ant-design/icons';
import type { UploadProps } from 'antd';

const props: UploadProps = {
  name: 'file',
  action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
  headers: {
    authorization: 'authorization-text',
  },
  onChange(info) {
    if (info.file.status !== 'uploading') {
      console.log(info.file, info.fileList);
    }
    if (info.file.status === 'done') {
      message.success(`${info.file.name} file uploaded successfully`);
    } else if (info.file.status === 'error') {
      message.error(`${info.file.name} file upload failed.`);
    }
  },
};

ReactDOM.render(
  <Upload {...props}>
    <Button icon={<UploadOutlined />}>Click to Upload</Button>
  </Upload>,
  mountNode,
);