You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/upload/demo/basic.md

29 lines
490 B
Markdown

# 点击上传
- order: 0
经典款式,用户点击按钮弹出文件选择框。
---
````jsx
var Upload = antd.Upload;
var props = {
action: '/upload.do',
10 years ago
onChange(info) {
console.log(info.file);
console.log(info.fileList);
10 years ago
}
};
React.render(
<Upload {...props}>
<button className="ant-btn ant-btn-ghost">
<i className="anticon anticon-upload"></i> 点击上传
</button>
</Upload>,
document.getElementById('components-upload-demo-basic')
);
````