Vue와 Excel을 사용하여 일괄 필터링을 구현하고 데이터를 내보내는 방법
실제 프로젝트 개발에서는 많은 양의 데이터를 필터링하고 내보내야 하는 경우가 많습니다. 널리 사용되는 프런트 엔드 프레임워크인 Vue는 Excel과 같은 도구와 함께 사용하여 일괄 필터링 및 데이터 내보내기를 빠르고 쉽게 구현할 수 있습니다. 이 글에서는 Vue와 Excel을 사용하여 이 기능을 구현하는 방법을 소개하고 참조용 코드 예제를 제공합니다.
1.1 Vue CLI 설치:
Vue CLI를 설치하려면 명령줄에 다음 명령을 입력합니다.
npm install -g @vue/cli
1.2 Vue 프로젝트 만들기:
명령줄에 다음 명령을 입력하여 새 Vue 프로젝트를 만듭니다.
vue create vue-excel-demo
그런 다음 프롬프트에 따라 기본 구성과 플러그인을 선택하세요.
1.3 Vue Excel 플러그인 설치:
명령줄에 프로젝트 디렉터리를 입력하고 다음 명령을 입력하여 Vue Excel 플러그인 및 관련 종속성을 설치합니다.
cd vue-excel-demo npm install vue-excel-export xlsx
<template> <div> <input type="text" v-model="keyword" placeholder="请输入筛选关键字" /> <button @click="filterData">筛选</button> <button @click="exportData">导出</button> <table> <thead> <tr> <th>姓名</th> <th>年龄</th> <th>性别</th> </tr> </thead> <tbody> <tr v-for="item in filteredData" :key="item.id"> <td>{{ item.name }}</td> <td>{{ item.age }}</td> <td>{{ item.gender }}</td> </tr> </tbody> </table> </div> </template> <script> import { export_json_to_excel } from "xlsx"; export default { data() { return { data: [ { id: 1, name: "张三", age: 18, gender: "男" }, { id: 2, name: "李四", age: 20, gender: "女" }, { id: 3, name: "王五", age: 22, gender: "男" } ], keyword: "" }; }, computed: { filteredData() { if (this.keyword === "") { return this.data; } else { return this.data.filter(item => item.name.includes(this.keyword)); } } }, methods: { filterData() { console.log("筛选数据"); // 这里可以进行筛选逻辑的处理 }, exportData() { console.log("导出数据"); const jsonData = JSON.parse(JSON.stringify(this.filteredData)); const worksheet = xlsx.utils.json_to_sheet(jsonData); const workbook = xlsx.utils.book_new(); xlsx.utils.book_append_sheet(workbook, worksheet, "Sheet1"); const excelBuffer = xlsx.write(workbook, { bookType: "xlsx", type: "array" }); const data = new Blob([excelBuffer], { type: "application/octet-stream" }); FileSaver.saveAs(data, "导出数据.xlsx"); } } }; </script>
위 코드에서는 간단한 데이터 테이블을 생성하고 v-for 명령어를 사용하여 렌더링 데이터를 반복합니다. 동시에 계산된 속성filteredData를 사용하여 데이터 필터링 기능을 구현하고 입력된 키워드를 기반으로 데이터를 동적으로 필터링합니다. 필터링 기능의 특정 논리는 실제 필요에 따라 확장될 수 있습니다.
// 导入相关库 import { export_json_to_excel } from "xlsx"; import FileSaver from "file-saver"; // 导出数据 exportData() { console.log("导出数据"); // 将筛选后的数据转换为Excel的工作表数据结构 const jsonData = JSON.parse(JSON.stringify(this.filteredData)); const worksheet = xlsx.utils.json_to_sheet(jsonData); // 创建并配置Excel工作簿 const workbook = xlsx.utils.book_new(); xlsx.utils.book_append_sheet(workbook, worksheet, "Sheet1"); // 导出Excel文件 const excelBuffer = xlsx.write(workbook, { bookType: "xlsx", type: "array" }); const data = new Blob([excelBuffer], { type: "application/octet-stream" }); FileSaver.saveAs(data, "导出数据.xlsx"); }
위 코드에서는 먼저 필터링된 데이터 jsonData를 Excel의 워크시트 데이터 구조 워크시트로 변환한 다음 Excel 통합 문서 통합 문서를 생성하고 해당 워크시트를 통합 문서에 추가합니다. 마지막으로 FileSaver 라이브러리를 사용하여 통합 문서를 Excel 파일로 변환하고 로컬에 저장합니다.
위 내용은 Vue와 Excel을 사용하여 일괄 필터링을 구현하고 데이터를 내보내는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!