lumen簡單使用exel元件

2022-07-20 16:36:16 字數 834 閱讀 6236

composer require maatwebsite/excel ~2.1.0

這裡要取消下面兩行前面的注釋

3.然後開始寫demo啦

在routes/web.php下

});

<?php 

use maatwebsite\excel\facades\excel;

class excelcontroller extends controller

public function export()

);})->export('xls');

excel::create('學生成績',function($excel) use ($celldata));

})->store('xls')->export('xls');}}

這裡注意要在頭部加上use maatwebsite\excel\facades\excel;

然後用瀏覽器訪問        專案啟動路徑/excel,    

然後就會生成如下**

如果還想把excel 表儲存在伺服器的話

可以使用如下**

檔案預設儲存在storage/exports,儲存在伺服器的檔名中文出現了亂碼,可以使用  iconv('utf-8', 'gbk', '學生成績')

excel::create('學生成績',function($excel) use ($celldata));

})->store('xls')->export('xls');

Vue Vue元件簡單使用

現在的有些web應用都非常龐大,web開發也越來越元件化 模組化,我們需要在使用vue的時候去寫一些元件,避免重複造輪子,提高元件的復用和開發效率。乙個元件就好像一塊積木,多個元件的層層堆疊 擺放最終形成乙個完整的系統。元件的好處在於降低了各個模組之間的耦合性,以至於我們在維護專案時不會太心累。高度...

Lumen 配合使用Dingo Api的問題。

lumen 上安裝dingo api遇到個問題。按照文件上的說法,配置了.env檔案。可以訪問時始終出錯。出錯內容如下 lumen.error exception runtimeexception with message unable to boot apiserviceprovider,conf...

Vue iview分頁元件的簡單使用

首先看看iview 分頁元件的使用方法 1 total是page屬性,為總條數 2 current是page屬性,為當前頁數 3 page size是page屬性,為當前顯示資料條數 4 show elevat對應html 圖中跳至1頁 5 show sizer對應html圖中10條 頁 6 sho...