antd組件Upload實現本身上傳

前言

在實現圖片上傳時,可能須要用到Upload,可是它默認的上傳方式是加入圖片後直接上傳,若是要實現最後再一次性上傳,須要自定義內容。segmentfault

//添加按鈕的樣式
const uploadButton = (
      <div>
        <Icon type="plus" />
        <div className="ant-upload-text">Upload</div>
      </div>
 );


<Upload
              //樣式
              className={styles['override-ant-btn']}
              //陳列樣式,如今是卡片式
              listType="picture-card"
              //再圖片上傳到頁面後執行的函數,自定義讓他不執行
              beforeUpload={() => false}
              //數據,即圖片,是一個數組
              fileList={fileList}
              //當點擊查看時調用(上圖的那個眼睛)
              onPreview={this.handlePreview}
              //數據改變時調用
              onChange={this.handleChange}
            >
              //當很多於一張圖時,不顯示怎加圖片的按鈕。
              {fileList.length >= 1 ? null : uploadButton}
            </Upload>

還有一個移除時調用的函數onRemove(),即點擊上圖的垃圾桶,這裏沒有定義。數組

handlePreview = (file) => {
    this.setState({
      previewImage: file.url || file.thumbUrl,
      visible: true,
    });
  };


        <Modal visible={visible} footer={null} onCancel={this.handleCancel}>
              <img alt="加載" style={{ width: '100%',height: '100%' }} src={previewImage} />
        </Modal>

利用Modal顯示圖片。ide

handleChange = ({ fileList }) => {
    this.setState({ fileList });
};

數據改變時直接重設fileList數組的值(我這裏只有一張圖能夠這麼作)。函數

最後是fileList的一些基本設置:ui

fileList: [{
          uid: 'id',
          name: '標題',
          //目前的狀態
          status: 'done',
          //圖片的url或者base64
          url: '',
          type: 'image/jpeg',
        }],

來源:https://segmentfault.com/a/1190000017404796this

相關文章
相關標籤/搜索