PHP と UniApp を使用して Excel のデータのインポートとエクスポートを実装する方法
データのインポートとエクスポートは、Web 開発でよく遭遇する要件です。 Excel はよく使われるデータ形式の 1 つで、データを表形式でわかりやすく表示でき、互換性も高いため、多くの人に選ばれています。この記事では、PHP と UniApp を使用して Excel にデータをインポートおよびエクスポートする方法をそれぞれ紹介します。
まず、PHP を通じて Excel にデータをインポートする方法を見てみましょう。
Composer を通じてインストールできます。次のコードをcomposer.json ファイルに追加します。
{ "require": { "phpoffice/phpexcel": "^1.8" } }
次に、コマンド ラインで composer install
を実行して、インストールを完了します。取り付けも可能です。
<?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' => '上传失败' ]); } ?>
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 にエクスポートする方法を見てみましょう。
<?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'); ?>
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 中国語 Web サイトの他の関連記事を参照してください。