--- order: 8 title: zh-CN: 图片卡片样式 en-US: Pictures with card tyle --- ## zh-CN 上传文件为图片,可展示本地缩略图。 ## en-US If uploade file is picture, a thumbnail can be shown. ````jsx import { Upload, Icon, Modal } from 'antd'; const ImageUploadList = React.createClass({ getInitialState() { return { previewVisible: false, previewImage: '', }; }, handleCancel() { this.setState({ previewVisible: false, }); }, render() { const props = { action: '/upload.do', listType: 'picture-card', defaultFileList: [{ uid: -1, name: 'xxx.png', status: 'done', url: 'https://os.alipayobjects.com/rmsportal/NDbkJhpzmLxtPhB.png', thumbUrl: 'https://os.alipayobjects.com/rmsportal/NDbkJhpzmLxtPhB.png', }], onPreview: (file) => { this.setState({ previewImage: file.url, previewVisible: true, }); }, }; return (
); }, }); ReactDOM.render(