首頁  >  文章  >  後端開發  >  如何利用PHP與UniApp實作資料的Excel導入與匯出

如何利用PHP與UniApp實作資料的Excel導入與匯出

WBOY
WBOY原創
2023-07-04 17:53:142631瀏覽

如何利用PHP和UniApp實作資料的Excel匯入與匯出

匯入和匯出資料是我們在web開發中經常遇到的需求。而Excel作為常用的數據格式之一,能夠以表格形式清晰地展示數據,並且具有較高的兼容性,成為了許多人的選擇。本篇文章將介紹如何利用PHP和UniApp分別實現資料的Excel導入與匯出。

首先,我們先來看看如何透過PHP實現資料的Excel導入。

  1. 安裝PHPExcel函式庫
    PHPExcel是一個強大且易於使用的用於處理Excel檔案的PHP函式庫。我們首先需要在專案中安裝PHPExcel函式庫。

可以透過Composer進行安裝,將以下程式碼加入composer.json檔案:

{
    "require": {
        "phpoffice/phpexcel": "^1.8"
    }
}

然後在命令列中執行composer install#來完成安裝。

  1. 建立導入接口
    在PHP專案中,建立一個Excel導入接口,接收前端傳遞的Excel文件,並解析文件內容,將資料存入資料庫或進行其他操作。
<?php
require 'vendor/autoload.php';
use PhpOfficePhpSpreadsheetIOFactory;

if ($_FILES['file']['error'] == 0) {
    $file = $_FILES['file']['tmp_name'];
    $reader = IOFactory::createReader('Xlsx');
    $spreadsheet = $reader->load($file);
    $worksheet = $spreadsheet->getActiveSheet();
    
    // 获取数据并处理
    $data = [];
    foreach ($worksheet->getRowIterator() as $row) {
        $rowData = [];
        foreach ($row->getCellIterator() as $cell) {
            $rowData[] = $cell->getValue();
        }
        $data[] = $rowData;
    }
    
    // 处理数据
    // ...
    
    // 返回处理结果
    echo json_encode([
        'status' => 1,
        'message' => '上传成功'
    ]);
} else {
    echo json_encode([
        'status' => 0,
        'message' => '上传失败'
    ]);
}
?>
  1. 在UniApp中呼叫接口
    在UniApp專案中,使用uni.request呼叫上述接口,將Excel檔案作為FormData上傳到伺服器。
export default {
    methods: {
        importExcel() {
            uni.chooseMessageFile({
                count: 1,
                success: (res) => {
                    const tempFilePath = res.tempFiles[0].path;
                    uni.uploadFile({
                        url: 'http://localhost/import.php',
                        filePath: tempFilePath,
                        name: 'file',
                        success: (res) => {
                            const data = JSON.parse(res.data);
                            if (data.status === 1) {
                                uni.showToast({
                                    title: '导入成功',
                                    icon: 'success'
                                });
                            } else {
                                uni.showToast({
                                    title: '导入失败',
                                    icon: 'none'
                                });
                            }
                        },
                        fail: () => {
                            uni.showToast({
                                title: '上传失败',
                                icon: 'none'
                            });
                        }
                    });
                }
            });
        }
    }
}

下面我們來看如何透過UniApp實現資料的Excel匯出。

  1. 建立匯出介面
    在PHP專案中,建立一個Excel匯出接口,根據需要從資料庫取得數據,然後將資料匯出為Excel檔案供使用者下載。
<?php
require 'vendor/autoload.php';
use PhpOfficePhpSpreadsheetSpreadsheet;
use PhpOfficePhpSpreadsheetWriterXlsx;

// 获取数据
$data = [
    ['name', 'age', 'gender'],
    ['Tom', 20, 'Male'],
    ['Lisa', 25, 'Female'],
    // ...
];

// 创建Excel文件
$spreadsheet = new Spreadsheet();
$worksheet = $spreadsheet->getActiveSheet();
$worksheet->fromArray($data);

// 下载文件
$writer = new Xlsx($spreadsheet);
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="export.xlsx"');
$writer->save('php://output');
?>
  1. 在UniApp中呼叫介面
    在UniApp專案中,使用uni.dow​​nloadFile來下載匯出的Excel檔案。
export default {
    methods: {
        exportExcel() {
            uni.downloadFile({
                url: 'http://localhost/export.php',
                success: (res) => {
                    uni.saveFile({
                        tempFilePath: res.tempFilePath,
                        success: (res) => {
                            uni.showToast({
                                title: '导出成功',
                                icon: 'success'
                            });
                        }
                    });
                },
                fail: () => {
                    uni.showToast({
                        title: '导出失败',
                        icon: 'none'
                    });
                }
            });
        }
    }
}

透過上述步驟,我們可以輕鬆實現資料的Excel匯入和匯出功能。無論是在PHP後端或UniApp前端,都能夠透過相關的函式庫和介面來完成這項任務。希望本文能對你有幫助!

以上是如何利用PHP與UniApp實作資料的Excel導入與匯出的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn