react 文件上传限制格式类型大小

该博客展示了如何在React应用中实现文件上传功能,同时限制上传文件的大小不超过5MB,并且只允许导入Excel(.xls, .xlsx)格式的文件。通过使用Ant Design的Upload组件,结合beforeUpload和onChange回调函数进行文件验证和错误提示。
摘要由CSDN通过智能技术生成

react 文件上传限制格式类型大小

import React from 'react'
import { Upload, message, Button, Card } from 'antd';
import { UploadOutlined } from '@ant-design/icons';

export default function Index() {
    const beforeupload = (file, fileList) => {
        const islt5M = file.size / 1024 / 1024 < 5
        if (!islt5M) {
            message.error('文件夹过大!!')
            const index = fileList.indexOf(file)
            fileList.splice(index, 1)
            return false
        }
        const fileType = file.name
            .substr(file.name.lastIndexOf("."))
            .toLowerCase();  // 获取文件后缀名
        if (fileType !== '.excel' && fileType !== '.xls') {
            message.error('请选择正确格式文件夹')
            // 如果错的话就把这个文件夹删掉
            const index = fileList.indexOf(file)
            fileList.splice(index, 1);
            return false
        }        
    }
    const change = (fileInfo) => {
        if (fileInfo.file.response === 'success') {
            message.success('导入成功')
        }
        if (fileInfo.file.response) {
            message.error(
                `导入异常记录:${fileInfo.file.response}请修改`
            )
        }
    }
    return (
        <div>
            <Card>
                <Upload
                    method='post'
                    action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
                    onChange={change}
                    beforeUpload={beforeupload}
                    directory>
                    <Button icon={<UploadOutlined />}>导入</Button>
                </Upload>
                <span >文件格式不能超过5M,仅允许导入“execl和xls”类型文件</span>
            </Card>
        </div>
    )
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱技术的大仙

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值