blondak/dataresponse

用于Nette的动态数据源的数据响应

0.1.1 2018-04-09 04:19 UTC

This package is not auto-updated.

Last update: 2024-09-24 07:52:37 UTC


README

XLSX,CSV响应,用于 Nette框架

  • gzip编码
  • 动态数据源

下载包

composer require blondak/dataresponse

示例数据源

<?php

namespace App\Model\Service\Feed;

Presenter
```php
public function actionExportCsv(int $id): void
{
	$response = new CsvResponse($this->datasource, sprintf('export-%d.csv', $id));
	$this->sendResponse($response);
}