2015-08-08 23:37:35 +08:00
|
|
|
# 点击上传
|
|
|
|
|
2015-08-31 12:13:55 +08:00
|
|
|
- order: 0
|
2015-08-08 23:37:35 +08:00
|
|
|
|
2015-08-09 18:00:20 +08:00
|
|
|
经典款式,用户点击按钮弹出文件选择框。
|
2015-08-08 23:37:35 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
var Upload = antd.Upload;
|
2015-09-08 15:38:28 +08:00
|
|
|
var message = antd.message;
|
2015-08-09 18:00:20 +08:00
|
|
|
|
2015-08-08 23:37:35 +08:00
|
|
|
var props = {
|
|
|
|
action: '/upload.do',
|
2015-08-31 21:26:34 +08:00
|
|
|
onChange(info) {
|
2015-09-01 00:52:34 +08:00
|
|
|
if (info.file.status !== 'uploading') {
|
2015-09-08 15:38:28 +08:00
|
|
|
console.log(info.file, info.fileList);
|
|
|
|
}
|
|
|
|
if (info.file.status === 'done') {
|
|
|
|
message.success(info.file.name + ' 上传成功。');
|
|
|
|
} else if (info.file.error) {
|
|
|
|
message.error(info.file.name + ' 上传失败。');
|
2015-09-01 00:52:34 +08:00
|
|
|
}
|
2015-08-27 15:57:25 +08:00
|
|
|
}
|
2015-08-08 23:37:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
React.render(
|
2015-08-18 15:33:48 +08:00
|
|
|
<Upload {...props}>
|
2015-09-08 16:02:43 +08:00
|
|
|
<button type="button" className="ant-btn ant-btn-ghost">
|
2015-08-18 17:05:56 +08:00
|
|
|
<i className="anticon anticon-upload"></i> 点击上传
|
|
|
|
</button>
|
2015-09-01 00:52:34 +08:00
|
|
|
</Upload>
|
|
|
|
, document.getElementById('components-upload-demo-basic'));
|
2015-08-08 23:37:35 +08:00
|
|
|
````
|