前端react后端java实现提交antd form表单成功即导出压缩包

前端(React + Ant Design)

  1. 创建表单:使用<Form>组件来创建你的表单。

  2. 处理表单提交:在onFinish回调中发起请求到后端API,并处理响应。

javascript 复制代码
import React from 'react';
import { Form, Input, Button } from 'antd';

const MyForm = () => {
  const [form] = Form.useForm();

  const onFinish = async (values) => {
    try {
      // 提交表单数据给后端API,并等待响应
      const response = await fetch('/api/submit-form', {
        method: 'POST',
        headers: {
          'Content-Type': 'application/json'
        },
        body: JSON.stringify(values)
      });

      if (!response.ok) throw new Error('Network response was not ok');

      // 处理返回的文件流
      const blob = await response.blob();
      const url = window.URL.createObjectURL(blob);
      const a = document.createElement('a');
      a.style.display = 'none';
      a.href = url;
      a.download = 'exported.zip'; // 设置下载的文件名
      document.body.appendChild(a);
      a.click();
      window.URL.revokeObjectURL(url);
      document.body.removeChild(a);

    } catch (error) {
      console.error('There was a problem with the form submission:', error);
    }
  };

  return (
    <Form form={form} name="my_form" onFinish={onFinish}>
      {/* 表单项 */}
      <Form.Item name="username" rules={[{ required: true, message: 'Please input your username!' }]}>
        <Input />
      </Form.Item>
      {/* 更多表单项... */}
      <Form.Item>
        <Button type="primary" htmlType="submit">
          Submit
        </Button>
      </Form.Item>
    </Form>
  );
};

export default MyForm;

后端(Java + Spring Boot)

假设使用的是Spring Boot作为Java后端框架,以下是如何处理前端请求并生成压缩包的示例代码:

  1. 接收表单数据:创建一个REST控制器来接收前端发送的表单数据。

  2. 生成压缩包:根据接收到的数据生成压缩包。

  3. 发送压缩包:将压缩包作为HTTP响应的一部分发送回前端。

首先,需要添加必要的依赖项到pom.xml中,例如commons-compress用于创建ZIP文件。

XML 复制代码
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-compress</artifactId>
    <version>1.21</version>
</dependency>

然后,在控制器中处理请求:

java 复制代码
import org.springframework.web.bind.annotation.*;
import java.io.*;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

@RestController
@RequestMapping("/api")
public class FormController {

    @PostMapping("/submit-form")
    public void handleFormSubmit(@RequestBody Map<String, Object> formData, HttpServletResponse response) throws IOException {
        // 根据formData准备要压缩的文件或文件路径列表...

        // 设置响应头以指示这是一个文件下载
        response.setContentType("application/zip");
        response.setHeader("Content-Disposition", "attachment; filename=exported.zip");

        // 创建ZIP输出流
        try (ZipOutputStream zipOut = new ZipOutputStream(response.getOutputStream())) {
            // 添加文件到ZIP存档...
            // 这里只是一个示例,你需要根据实际情况调整逻辑
            File fileToZip = new File("path/to/file.txt");
            FileInputStream fis = new FileInputStream(fileToZip);
            ZipEntry zipEntry = new ZipEntry(fileToZip.getName());
            zipOut.putNextEntry(zipEntry);

            byte[] bytes = new byte[1024];
            int length;
            while ((length = fis.read(bytes)) >= 0) {
                zipOut.write(bytes, 0, length);
            }

            zipOut.closeEntry();
            fis.close();
        }
    }
}

请注意,上述代码片段是简化版的示例,实际应用中可能需要更复杂的逻辑来处理错误、验证以及确保安全性。此外,后端部分还需要根据实际需求调整文件的压缩逻辑。如果需要压缩多个文件或目录,或者有更复杂的需求,则可能需要引入其他库或工具来辅助完成任务。

相关推荐
猩猩程序员5 分钟前
Vercel 推出 Agent 框架 Eve:让 AI Agent 像写 Web 应用一样简单
前端
她的男孩31 分钟前
Spring Boot 接 Flowable 工作流:用 3 个注解搭一个请假审批流程
java·后端·架构
爱读源码的大都督37 分钟前
Claude Code源码分析(三):为什么系统提示词中需要有tools呢?
前端·人工智能·后端
爱勇宝42 分钟前
Claude Code 被曝暗藏“隐形检测”代码:封代理不是最可怕的,可怕的是你根本不知道它在干什么
前端·后端·程序员
小牛不牛的程序员1 小时前
我用 Claude Code 半天撸完了一个完整网站,AI 编程到底提升了多少效率?
前端
东风破_1 小时前
JavaScript 面试常考的字符串算法:从反转字符串到回文判断
前端·javascript
ITOM运维行者1 小时前
从零搭建企业级服务器监控体系:踩坑实录与架构设计
前端·后端
monologues1 小时前
深入 Vue 3 源码:响应式系统的精妙设计与编译优化
前端
hunterandroid1 小时前
Paging 3 分页:从手动分页到声明式加载
前端
用户4099322502121 小时前
Vue状态管理入门第四章:组合式store和SSR风险
前端·vue.js·后端