溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Laravel Excel的功能怎么使用

發(fā)布時間:2023-01-14 11:06:05 來源:億速云 閱讀:116 作者:iii 欄目:編程語言

這篇文章主要介紹了Laravel Excel的功能怎么使用的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Laravel Excel的功能怎么使用文章都會有所收獲,下面我們一起來看看吧。

1. 從 HTML 或者是 Blade 導(dǎo)入數(shù)據(jù)

假設(shè)已經(jīng)有一個 HTML 表格

Laravel Excel的功能怎么使用

模版代碼 -- resources/views/customers/table.blade.php:

<table class="table">
    <thead>
    <tr>
        <th></th>
        <th>First name</th>
        <th>Last name</th>
        <th>Email</th>
        <th>Created at</th>
        <th>Updated at</th>
    </tr>
    </thead>
    <tbody>
    @foreach ($customers as $customer)
    <tr>
        <td>{{ $customer->id }}</td>
        <td>{{ $customer->first_name }}</td>
        <td>{{ $customer->last_name }}</td>
        <td>{{ $customer->email }}</td>
        <td>{{ $customer->created_at }}</td>
        <td>{{ $customer->updated_at }}</td>
    </tr>
    @endforeach
    </tbody>
</table>

你可以使用它去重復(fù)導(dǎo)入這個表格到 Excel

步驟1. 生成一個 Export 類

php artisan make:export CustomersFromView --model=Customer

步驟2. 使用 FromView 進行操作

namespace App\Exports;

use App\Customer;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;

class CustomersExportView implements FromView
{
    public function view(): View
    {
        return view('customers.table', [
            'customers' => Customer::orderBy('id', 'desc')->take(100)->get()
        ]);
    }
}

這里是導(dǎo)入的 Excel 文件:

Laravel Excel的功能怎么使用

注意:這里只能導(dǎo)出 HTML 表格,不能具有任何標(biāo)簽,比如 html,body,div 等。

2. 導(dǎo)出到 PDF,HTML,或是其他格式的文件

雖然包的名稱是 Laravel Excel,但是提供了多種導(dǎo)出格式,并且使用起來十分簡單,只要在類里再添加一個參數(shù)即可:

return Excel::download(new CustomersExport(), 'customers.xlsx', 'Html');

比如這么做,就導(dǎo)出到了HTML,如下圖所示:

Laravel Excel的功能怎么使用

沒有太多的樣式,下面是源代碼:

Laravel Excel的功能怎么使用

不僅如此,它還可以導(dǎo)出到 PDF,甚至你可以從中選擇三種庫,使用方法是一樣的,你只要在最后一個參數(shù)指定格式就好了,下面是一些例子。 文檔示例:

Laravel Excel的功能怎么使用

注意:你必須通過 composer 安裝指定的 PDF 包,比如:

composer require dompdf/dompdf

導(dǎo)出的 PDF 如下所示:

Laravel Excel的功能怎么使用

3. 按需格式化單元格

Laravel Excel 有一個強有力的「爸爸」 -- PhpSpreadsheet。因此它就擁有其各種底層功能,包括各種方式的單元格格式化。

此處是一個如何在 Laravel Export 類中使用它的例子,例如 app/Exports/CustomersExportStyling.php:

步驟 1. 在頭部引入適當(dāng)?shù)念悺?/p>

use Maatwebsite\Excel\Concerns\WithEvents;
use Maatwebsite\Excel\Events\AfterSheet;

步驟 2. 在 implements 部分使用 WithEvents 接口。

class CustomersExportStyling implements FromCollection, WithEvents
{
    // ...

步驟 3. 用 AfterSheet 事件來創(chuàng)建 registerEvents() 方法。

/**
 * @return array
 */
public function registerEvents(): array
{
    return [
        AfterSheet::class    => function(AfterSheet $event) {
            // ... 此處你可以任意格式化
        },
    ];
}

這里有個例子:

/**
 * @return array
 */
public function registerEvents(): array
{
    return [
        AfterSheet::class    => function(AfterSheet $event) {
            // 所有表頭-設(shè)置字體為14
            $cellRange = 'A1:W1';
            $event->sheet->getDelegate()->getStyle($cellRange)->getFont()->setSize(14);

            // 將樣式數(shù)組應(yīng)用于B2:G8范圍單元格
            $styleArray = [
                'borders' => [
                    'outline' => [
                        'borderStyle' => \PhpOffice\PhpSpreadsheet\Style\Border::BORDER_THICK,
                        'color' => ['argb' => 'FFFF0000'],
                    ]
                ]
            ];
            $event->sheet->getDelegate()->getStyle('B2:G8')->applyFromArray($styleArray);

            // 將第一行行高設(shè)置為20
            $event->sheet->getDelegate()->getRowDimension(1)->setRowHeight(20);

            // 設(shè)置 A1:D4 范圍內(nèi)文本自動換行
            $event->sheet->getDelegate()->getStyle('A1:D4')
                ->getAlignment()->setWrapText(true);
        },
    ];
}

這些「隨機」樣例展示的結(jié)果如下所示:

Laravel Excel的功能怎么使用

你可以在 Recipes page of PhpSpreadsheet docs中找到所有的以上以及更多示例。

4. 隱藏模型屬性

假設(shè)我們已經(jīng)創(chuàng)建了Laravel 5.7默認的users表:

Laravel Excel的功能怎么使用

現(xiàn)在我們嘗試用簡單的FromCollection來導(dǎo)出用戶表數(shù)據(jù):

class UsersExport implements FromCollection
{
    public function collection()
    {
        return User::all();
    }
}

在導(dǎo)出的Excel 里,你只能看到如下字段,但是沒有passwordremember_token

Laravel Excel的功能怎么使用

這是因為在User模型里定義了隱藏字段的屬性:

class User extends Authenticatable
{
    // ...

    /**
     * 這個數(shù)組用來定義需要隱藏的字段。
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];
}

所以,默認情況下這些字段是隱藏的,如果你想在導(dǎo)出數(shù)據(jù)的時候某些字段不被導(dǎo)出的話,可以直接在模型中定義隱藏屬性$hidden。

5. 公式

出于某種原因,Laravel Excel 包的官方文檔中并沒有提及公式,但是這是Excel 重要的功能!

幸運的是,我們可以直接將公式寫在導(dǎo)出數(shù)據(jù)的類中,我們需要設(shè)置cell 的值,就像這樣:=A2+1 or SUM(A1:A10)。

其中一種方式就是實現(xiàn)WithMapping 接口:

use App\Customer;
use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\WithMapping;

class CustomersExportFormulas implements FromCollection, WithMapping
{
    public function collection()
    {
        return Customer::all();
    }

    /**
     * @var Customer $customer
     * @return array
     */
    public function map($customer): array
    {
        return [
            $customer->id,
            '=A2+1',
            $customer->first_name,
            $customer->last_name,
            $customer->email,
        ];
    }
}

關(guān)于“Laravel Excel的功能怎么使用”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Laravel Excel的功能怎么使用”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI