antd+react中upload手動上傳單限制上傳一張

需求

  • 限制上傳一張圖片
  • 點擊按鈕,手動上傳
  • 新增圖片替換原來的圖片,沒有圖片時顯示PlusOutLined
  • 圖片預覽彈出框

代碼

導入所需的庫

import React, { useState, useEffect } from 'react'
import {
  Upload,
  Button,
  message,
  Modal
} from 'antd'
import 'antd/dist/antd.css';
import { PlusOutlined } from '@ant-design/icons'

用到的常量/state

const imgTypeLimit = ['image/png', 'image/jpg']
const imgLimitSize = 3 * 1024 * 1024
// 圖片列表
const [fileList, setFileList] = useState([])
// 圖片預覽框
const [previewVisible, setPreviewVisible] = useState(false)
const [previewTitle, setPreviewTitle] = useState('')
const [previewUrl, setPreviewUrl] = useState('')
// 上傳button加個loading
const [loading, setLoading] = useState(false)

Upload

<div>
  <Upload
    classNmae="avatar-uploader"
    listType="picture-card"
    maxCount={1}  // 限制最大上傳
    fileList={fileList}
    showUploadList={true}  // 列表縮略圖
    accept=".jpg, .png"  // 打開的文件框默認的文件類型
    beforeUpload={beforeUpload}
    onRemove={handleRemove}
    onPreview={handlePreview}
    onChange={handleChange}
  >
    {
      fileList && fileList.length >= 1 ? null : (
        <div>
          <PlusOutlined />
        </div>
      )
    }
  </Upload>
  <Modal
    visible={previewVisible}
    title={previewTitle}
    footer={null}
    onCancel={handlePreviewCancel}>
    <img src={previewUrl} alt="" />
  </Modal>
  <Button
    type="primary"
    onClick={handleUpload}
    loading={loading}
  >上傳</Button>
</div>

回調函數

const beforeUpload = (file, fileList) => {
    // 判斷文件格式
    if ((imgTypeLimit.includes(file.type)) && file.size < imgLimitSize) {
      setFileList(fileList)
    } else {
      message.error('上傳的圖片格式或尺寸不符合要求!')
      return Upload.LIST_IGNORE  // 不加入fileList
    }
    // 返回false表示不上傳
    return false
  }
  // 移除圖片
  const handleRemove = (file) => {
    setFileList([]);
  }
  const handleChange = (info) => {
    setFileList(info.fileList)
  }
  // 圖片預覽
  const handlePreview = (file) => {
    setPreviewTitle(file.name)
    setPreviewUrl(file.url || file.thumbUrl)
    setPreviewVisible(true)
  }
  // 圖片預覽結束/取消
  const handlePreviewCancel = () => {
    setPreviewVisible(false)
  }
  // 點擊上傳
  const handleUpload = () => {
    const formData = new FormData()
    if (!fileList || fileList.length === 0) return message.error('請上傳圖片')
    formData.append('file', fileList[0])
    setLoading(true)
    // 發起請求...
    setTimeout(() => { console.log("timeout"); }, 1000)
    setLoading(false)
  }

完整代碼在github:https://github.com/gmx-white/simple-wheel

到此這篇關於antd+react中upload手動上傳單限制上傳一張的文章就介紹到這瞭,更多相關antd react upload手動上傳內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: