真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

LaravelExcel的功能怎么使用

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

創(chuàng)新互聯(lián)建站專注于企業(yè)網(wǎng)絡(luò)營銷推廣、網(wǎng)站重做改版、伊美網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5建站成都做商城網(wǎng)站、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為伊美等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

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

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

Laravel Excel的功能怎么使用

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


    
    
        
        First name
        Last name
        Email
        Created at
        Updated at
    
    
    
    @foreach ($customers as $customer)
    
        {{ $customer->id }}
        {{ $customer->first_name }}
        {{ $customer->last_name }}
        {{ $customer->email }}
        {{ $customer->created_at }}
        {{ $customer->updated_at }}
    
    @endforeach
    

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

步驟1. 生成一個(gè) Export 類

php artisan make:export CustomersFromView --model=Customer

步驟2. 使用 FromView 進(jìn)行操作

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)出格式,并且使用起來十分簡單,只要在類里再添加一個(gè)參數(shù)即可:

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

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

Laravel Excel的功能怎么使用

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

Laravel Excel的功能怎么使用

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

Laravel Excel的功能怎么使用

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

composer require dompdf/dompdf

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

Laravel Excel的功能怎么使用

3. 按需格式化單元格

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

此處是一個(gè)如何在 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) {
            // ... 此處你可以任意格式化
        },
    ];
}

這里有個(gè)例子:

/**
 * @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);
        },
    ];
}

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

Laravel Excel的功能怎么使用

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

4. 隱藏模型屬性

假設(shè)我們已經(jīng)創(chuàng)建了Laravel 5.7默認(rèn)的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的功能怎么使用

這是因?yàn)樵?code>User模型里定義了隱藏字段的屬性:

class User extends Authenticatable
{
    // ...

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

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

5. 公式

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

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

其中一種方式就是實(shí)現(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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


名稱欄目:LaravelExcel的功能怎么使用
標(biāo)題URL:http://weahome.cn/article/gjdpjp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部