gpt4 book ai didi

PhpSpreadsheet 如何导出带有子标题的 html?

转载 作者:行者123 更新时间:2023-12-04 03:59:01 24 4
gpt4 key购买 nike

引用:https://github.com/PHPOffice/PhpSpreadsheet/issues/1608

预期的行为是什么?

html

没有事件

enter image description here

当前的行为是什么?

html

重现的步骤是什么?

问题是基于 Maatwebsite/Laravel-Excel 内部使用 PhpSpreadsheet https://github.com/Maatwebsite/Laravel-Excel/issues/2784

<table style="width:100%" border="1">
<thead>
<tr>
// ...
<th style="text-align: center;" colspan="4">{{ __('Items') }}</th>
// ...
</tr>
<tr>
// ...
</tr>
</thead>

@foreach ($models->cursor() as $model)
<tbody>
<tr>
// ...

<td colspan="4">
<table style="width:100%">
@foreach ($model->relation as $item)
<tr>
// ...
</tr>
@endforeach
</table>
</td>

// ...
</tr>
</tbody>
@endforeach
</table>
// this works perfectly with single headers, but not with sub ones
public function registerEvents(): array
{
return [
AfterSheet::class => function (AfterSheet $event) {
$sheet = $event->sheet->getDelegate();
$sheet->getRowDimension(1)->setRowHeight(30);

$header = $sheet->getStyle('A1:' . $sheet->getHighestDataColumn() . '1');
$header->getAlignment()->setVertical(\PhpOffice\PhpSpreadsheet\Style\Alignment::VERTICAL_CENTER);
$header->getFont()->setBold(true);
$header->getFill()->setFillType(\PhpOffice\PhpSpreadsheet\Style\Fill::FILL_SOLID)->getStartColor()->setARGB('00000000');
$header->getFont()->getColor()->setARGB(\PhpOffice\PhpSpreadsheet\Style\Color::COLOR_WHITE);

$other = $sheet->getStyle('A2:' . $sheet->getHighestDataColumn() . $sheet->getHighestRow());
$other->getAlignment()->setVertical(\PhpOffice\PhpSpreadsheet\Style\Alignment::VERTICAL_TOP);

foreach ([$header, $other] as $item) {
$item->getAlignment()->setHorizontal(\PhpOffice\PhpSpreadsheet\Style\Alignment::HORIZONTAL_LEFT);
$item->getAlignment()->setWrapText(true);
}
},
];
}

感谢任何帮助,如果您需要更多信息,请询问。

最佳答案

子标题或 <tr>里面<thead>是有效的 HTML,应该可以与 PhpSpreadsheet/Laravel-Excel 一起正常工作。然而,multiple <tbody> isn't valid/legal根据HTML spec , 和 nested tables aren't supported by Laravel-Excel .

正如我在评论中提到的那样,我们一直在我们的应用程序中使用 Laravel-Excel,它使用非常相似的布局,并且在头部多行的情况下工作正常。所以真正的问题是多重或嵌套的 body 。我建议关注 approach we've used .您可以使用适当的 rowspan 实现相同的布局。和 colspan (我们正在计算它)。

编辑:

根据要求,这里有一个例子 HTML with sample data根据您的布局,下面是带有循环的 Blade View 。

<table border="1">
<thead>
<tr>
<th rowspan="2">Client Name</th>
<th rowspan="2">Total</th>
<th colspan="4">{{ __('Items') }}</th>
<th rowspan="2">Creation Date</th>
</tr>
<tr>
<th>Title</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
</tr>
</thead>
<tbody>
@foreach($customers as $customer)
@php
$count = count($customer->items);
$i = 0;
@endphp

@foreach($customer->items as $item)
<tr>
@if($i == 0)
<td rowspan="{{ $count }}">{{ $customer->name }}</td>
<td rowspan="{{ $count }}">{{ $customer->total }}</td>
@endif

<td>{{ $item->title }}</td>
<td>{{ $item->price }}</td>
<td>{{ $item->qty }}</td>
<td>{{ $item->total }}</td>

@if($i == 0)
<td rowspan="{{ $count }}">{{ $customer->date }}</td>
@endif
</tr>
@php
$i++;
@endphp
@endforeach
@endforeach
</tbody>
</table>

关于PhpSpreadsheet 如何导出带有子标题的 html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63356980/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com