PHPEXcel和easyui采用MVC框架写一个超大Excel上传到数据库,先插入临时表,根据临时的字段查入实际的数据库,用临时的某个字段是字段判断以前的某个字段重复跳过下一行插入数据并且在上传完显示到上界面

时间: 2024-04-16 14:24:49 浏览: 114
您可以按照以下步骤来实现您的需求: 1. 首先,创建一个MVC架构的项目。您可以使用任何流行的PHP框架,如Laravel、CodeIgniter或Yii等。 2. 在您的视图层中,使用easyui创建一个上传文件的表单,并将表单数据发送到控制器。 3. 在控制器中,接收上传文件,并使用PHPEXcel库读取Excel文件数据。您可以使用PHPEXcel的方法,如`load()`函数来加载Excel文件。 4. 在控制器中,创建一个临时表来存储Excel数据。您可以使用数据库操作类或原生SQL语句来执行插入操作,并将Excel数据插入到临时表中。 5. 接下来,根据临时表中的字段进行查询操作。您可以使用SQL语句来查询具有重复字段的数据行。 6. 根据查询结果,在实际数据库中插入数据。您可以使用数据库操作类或原生SQL语句来执行插入操作,并将数据插入到实际的数据库表中。 7. 最后,将上传数据显示在前端界面上。您可以在控制器中查询实际数据库,并将结果传递给视图层,然后使用easyui来渲染和显示数据。 请注意,以上步骤是一个大致的指导,具体实现还需要根据您所选择的框架和库进行调整。此外,代码的安全性和数据验证也是非常重要的,您可能需要添加适当的验证和过滤来确保数据的准确性和安全性。
相关问题

PHPEXcel和easyui写一个超大Excel上传到数据库

要实现将超大的Excel文件上传到数据库,可以使用PHPExcel库来读取Excel文件的数据,然后使用EasyUI的文件上传组件来实现文件上传功能。下面是一个示例的代码: 1. 首先,确保已经安装了PHPExcel库和EasyUI库。 2. 创建一个上传页面(upload.php),包含一个EasyUI的文件上传组件和一个上传按钮: ```html <!DOCTYPE html> <html> <head> <title>Excel上传</title> <link rel="stylesheet" type="text/css" href="easyui/easyui.css"> <script type="text/javascript" src="easyui/jquery.min.js"></script> <script type="text/javascript" src="easyui/jquery.easyui.min.js"></script> </head> <body> <h2>Excel上传</h2> <input id="excelFile" name="excelFile" class="easyui-filebox" accept=".xls,.xlsx"> <br><br> <a href="#" class="easyui-linkbutton" onclick="upload()">上传</a> <script type="text/javascript"> function upload() { $('#excelFile').filebox('textbox').attr('name', 'excelFile'); $('#excelForm').form('submit', { url: 'upload_handler.php', onSubmit: function() { $.messager.progress(); return true; }, success: function(data) { $.messager.progress('close'); $.messager.alert('提示', data, 'info'); } }); } </script> </body> </html> ``` 3. 创建一个处理上传的脚本(upload_handler.php),在这个脚本中使用PHPExcel库来读取Excel数据并将其插入到数据库中: ```php <?php require_once 'PHPExcel/IOFactory.php'; // 获取上传的Excel文件 $excelFile = $_FILES['excelFile']['tmp_name']; // 加载Excel文件 $objPHPExcel = PHPExcel_IOFactory::load($excelFile); // 获取第一个工作表 $sheet = $objPHPExcel->getActiveSheet(); // 获取行数和列数 $highestRow = $sheet->getHighestRow(); $highestColumn = $sheet->getHighestColumn(); // 循环读取数据 for ($row = 1; $row <= $highestRow; $row++) { $rowData = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, null, true, false); // 将数据插入数据库,这里只是示例,需要根据实际情况进行数据库操作 // $rowData[0][0] 表示第一列的数据,$rowData[0][1] 表示第二列的数据,依此类推 // 例如:将数据插入名为data的表格中的两列name和value中 // $name = $rowData[0][0]; // $value = $rowData[0][1]; // insert into data (name, value) values ('$name', '$value'); } echo '上传成功!'; ?> ``` 以上代码仅为示例,实际使用中需要根据数据库类型和表结构进行相应的修改。另外,由于上传大型Excel文件可能会占用较多内存,可能需要对服务器进行相应的配置和优化。

写一个excel上传到数据库展示到前端,要求采用MVC,前端框架easyui

Sure! Here's an example of how you can upload an Excel file, store its data in a database, and display it on the front-end using the MVC pattern and the EasyUI framework: 1. Create the necessary database table to store the Excel data. Let's assume the table is named `excel_data` and has columns `id`, `name`, and `email`. 2. Create a file named `index.php` for the front-end view using EasyUI: ```html <!DOCTYPE html> <html> <head> <title>Excel Upload</title> <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/easyui@1.9.25/themes/default/easyui.css"> <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script> <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/easyui@1.9.25/jquery.easyui.min.js"></script> </head> <body> <h2>Excel Upload</h2> <form id="excelForm" method="post" enctype="multipart/form-data"> <input id="excelFile" name="excelFile" type="file"> <button id="uploadBtn" class="easyui-linkbutton" type="submit">Upload</button> </form> <table id="datagrid"></table> <script type="text/javascript"> $(function(){ $('#excelForm').form({ url: 'upload.php', onSubmit: function(){ return $(this).form('validate'); }, success: function(result){ $('#datagrid').datagrid('reload'); $.messager.show({ title: 'Success', msg: result, timeout: 5000 }); } }); $('#datagrid').datagrid({ url: 'data.php', fitColumns: true, columns: [[ {field: 'id', title: 'ID', width: 50}, {field: 'name', title: 'Name', width: 100}, {field: 'email', title: 'Email', width: 150} ]] }); }); </script> </body> </html> ``` 3. Create a file named `upload.php` to handle the file upload and data insertion into the database: ```php <?php require_once 'PHPExcel/PHPExcel.php'; // Database connection details $host = 'localhost'; $username = 'your_username'; $password = 'your_password'; $database = 'your_database'; // File upload directory $targetDir = 'uploads/'; if (!is_dir($targetDir)) { mkdir($targetDir, 0777, true); } $targetFile = $targetDir . basename($_FILES["excelFile"]["name"]); move_uploaded_file($_FILES["excelFile"]["tmp_name"], $targetFile); $objPHPExcel = PHPExcel_IOFactory::load($targetFile); $worksheet = $objPHPExcel->getActiveSheet(); $conn = new mysqli($host, $username, $password, $database); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } foreach ($worksheet->getRowIterator() as $row) { $rowData = []; $cellIterator = $row->getCellIterator(); $cellIterator->setIterateOnlyExistingCells(false); foreach ($cellIterator as $cell) { $rowData[] = $cell->getValue(); } $sql = "INSERT INTO excel_data (name, email) VALUES (?, ?)"; $stmt = $conn->prepare($sql); $stmt->bind_param("ss", $rowData[0], $rowData[1]); $stmt->execute(); } $conn->close(); unlink($targetFile); echo "Upload successful!"; ?> ``` 4. Create a file named `data.php` to fetch the data from the database and return it as JSON for the front-end grid: ```php <?php // Database connection details $host = 'localhost'; $username = 'your_username'; $password = 'your_password'; $database = 'your_database'; $conn = new mysqli($host, $username, $password, $database); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $sql = "SELECT * FROM excel_data"; $result = $conn->query($sql); $data = array(); while ($row = $result->fetch_assoc()) { $data[] = $row; } $conn->close(); echo json_encode($data); ?> ``` Make sure to replace `'your_username'`, `'your_password'`, and `'your_database'` with your actual database credentials. This example follows the MVC pattern by separating the front-end view (`index.php`), the controller (`upload.php`), and the model (`data.php`). Remember to include the PHPExcel library in the appropriate locations and adjust the file paths accordingly. I hope this example helps you with uploading an Excel file, storing the data in a database, and displaying it on the front-end using the MVC pattern and EasyUI framework. Let me know if you have any further questions!

相关推荐

最新推荐

recommend-type

使用phpexcel类实现excel导入mysql数据库功能(实例代码)

`PHPExcel_IOFactory`用于创建一个读取器对象,而`PHPExcel_Reader_Excel5`是针对Excel 97-2003格式的读取器。如果你需要处理Excel 2007及以上版本的文件,你可以使用`Excel2007`读取器。 接下来,创建一个`$...
recommend-type

php通过PHPExcel导入Excel表格到MySQL数据库的简单实例

PHPExcel库提供了一个方便的接口,用于读取Excel文件并处理数据。本篇将详细介绍如何使用PHPExcel将Excel表格导入到MySQL数据库的简单实例。 首先,确保已经安装了PHPExcel库。如果没有,可以通过Composer安装: `...
recommend-type

phpexcel导入excel处理大数据(实例讲解)

PHPExcel是一个流行的PHP库,允许开发者读取、写入和操作多种电子表格文件格式,包括Microsoft Excel的XLS和XLSX文件。 首先,为了使用PHPExcel,你需要从GitHub(https://github.com/PHPOffice/PHPExcel)下载库的...
recommend-type

OptiX传输试题与SDH基础知识

"移动公司的传输试题,主要涵盖了OptiX传输设备的相关知识,包括填空题和选择题,涉及SDH同步数字体系、传输速率、STM-1、激光波长、自愈保护方式、设备支路板特性、光功率、通道保护环、网络管理和通信基础设施的重要性、路由类型、业务流向、故障检测以及SDH信号的处理步骤等知识点。" 这篇试题涉及到多个关键的传输技术概念,首先解释几个重要的知识点: 1. SDH(同步数字体系)是一种标准的数字传输体制,它将不同速率的PDH(准同步数字体系)信号复用成一系列标准速率的信号,如155M、622M、2.5G和10G。 2. STM-1(同步传输模块第一级)是SDH的基本传输单元,速率为155Mbps,能容纳多个2M、34M和140M业务。 3. 自愈保护机制是SDH的重要特性,包括通道保护、复用段保护和子网连接保护,用于在网络故障时自动恢复通信,确保服务的连续性。 4. OptiX设备的支路板支持不同阻抗(75Ω和120Ω)和环回功能,环回测试有助于诊断和定位问题。 5. 光功率的度量单位dBm,0dBm表示光功率为1毫瓦。 6. 单向通道保护环在光纤中断时能够快速切换,保持业务不中断。例如,A-C业务在A-B光纤中断时仍能保持。 7. 传输网是通信基础设施的核心,对于信息的传送至关重要。 8. 映射、定位和复用是将PDH信号融入SDH帧结构的关键步骤,其中映射是将低速信号放入高速信号的容器,定位则是确保信号在正确的时间位置发送,复用则是在更高层次的信号中组合多个低速信号。 9. 单向通道保护环带链的拓扑结构中,环上交叉点站需要配置额外的光板来支持不同方向的业务。 10. 时钟的工作模式中,通常锁相模式(GPS同步)具有最高的精度,能提供稳定的系统定时。 这些知识点不仅适用于移动公司的传输网络维护,也是理解现代通信网络基础架构的关键。掌握这些概念和技术,对于网络工程师来说至关重要,能够有效提升网络的稳定性和可靠性。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

MATLAB Genetic Algorithm Function Optimization: Four Efficient Implementation Methods

# Genetic Algorithm Function Optimization in MATLAB: Four Efficient Methods ## 1. Fundamental Theory of Genetic Algorithms Genetic algorithms are optimization algorithms that simulate natural selection and genetics. They excel at solving optimization and search problems by effectively locating hig
recommend-type

java输 入n 用 * 打 出 直 角 三 角 形(n 为长和高)

在Java中,你可以通过嵌套循环来打印出指定长度n的直角三角形。这里是一个简单的示例: ```java import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("请输入三角形的边长(n): "); int n = scanner.nextInt(); // 打印上半部分星号
recommend-type

C++Builder函数详解与应用

"C++Builder函数一览" C++Builder是一个集成开发环境(IDE),它提供了丰富的函数库供开发者使用。在C++Builder中,函数是实现特定功能的基本单元,这些函数覆盖了从基本操作到复杂的系统交互等多个方面。下面将详细讨论部分在描述中提及的函数及其作用。 首先,我们关注的是与Action相关的函数,这些函数主要涉及到用户界面(UI)的交互。`CreateAction`函数用于创建一个新的Action对象,Action在C++Builder中常用于管理菜单、工具栏和快捷键等用户界面元素。`EnumRegisteredAction`用于枚举已经注册的Action,这对于管理和遍历应用程序中的所有Action非常有用。`RegisterAction`和`UnRegisterAction`分别用于注册和反注册Action,注册可以使Action在设计时在Action列表编辑器中可见,而反注册则会将其从系统中移除。 接下来是来自`Classes.hpp`文件的函数,这部分函数涉及到对象和集合的处理。`Bounds`函数返回一个矩形结构,根据提供的上、下、左、右边界值。`CollectionsEqual`函数用于比较两个`TCollection`对象是否相等,这在检查集合内容一致性时很有帮助。`FindClass`函数通过输入的字符串查找并返回继承自`TPersistent`的类,`TPersistent`是C++Builder中表示可持久化对象的基类。`FindGlobalComponent`变量则用于获取最高阶的容器类,这在组件层次结构的遍历中常用。`GetClass`函数返回一个已注册的、继承自`TPersistent`的类。`LineStart`函数用于找出文本中下一行的起始位置,这在处理文本文件时很有用。`ObjectBinaryToText`、`ObjectResourceToText`、`ObjectTextToBinary`和`ObjectTextToResource`是一组转换函数,它们分别用于在二进制流、文本文件和资源之间转换对象。`Point`和`Rect`函数则用于创建和操作几何形状,如点和矩形。`ReadComponentRes`、`ReadComponentResEx`和`ReadComponentResFile`用于从资源中读取和解析组件及其属性。`RegisterClass`、`UnregisterClass`以及它们的相关变体`RegisterClassAlias`、`RegisterClasses`、`RegisterComponents`、`RegisterIntegerConsts`、`RegisterNoIcon`和`RegisterNonActiveX`主要用于类和控件的注册与反注册,这直接影响到设计时的可见性和运行时的行为。 这些函数只是C++Builder庞大函数库的一部分,它们展示了C++Builder如何提供强大且灵活的工具来支持开发者构建高效的应用程序。理解并熟练使用这些函数对于提升C++Builder项目开发的效率至关重要。通过合理利用这些函数,开发者可以创建出功能丰富、用户体验良好的桌面应用程序。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

MATLAB Genetic Algorithm Supply Chain Optimization: Three Key Steps in Practical Application

# 1. Introduction to Genetic Algorithms in MATLAB As a widely-used mathematical computing and visualization software, MATLAB's powerful computational capabilities and rich toolbox functions make it an ideal platform for research and application of genetic algorithms. A genetic algorithm is a search