我正在尝试将AdminHtml网格导出为CSV。我有两个方法getCsv()和getCsvFile()用于将结果网格导出为CSV文件。请问有谁请告诉我这两个功能有什么区别?
方法-1
$fileName = "filename.csv";
$content = $this->getLayout()->createBlock('custom_modelue/adminhtml_report_grid')
->getCsv();
$this->_prepareDownloadResponse($fileName, $content);
方法-2
$fileName = "filename.csv";
$content = $this->getLayout()->createBlock('custom_modelue/adminhtml_report_grid')
->getCsvFile();
$this->_prepareDownloadResponse($fileName, $content);
当我使用方法-1时,滤镜未应用于导出CSV结果。但是在方法-2中,过滤器适用于结果集。
答案 0 :(得分:1)
这些是不同的功能,但结果非常相似。
getCsv()在Mage \ Adminhtml \ Block \ Report \ Grid.php中定义
getCsvFile()在Mage \ Adminhtml \ Block \ Widget \ Grid.php中定义
答案 1 :(得分:0)
getCsv()和getCsvFile()之间的区别在于
get CsvFile() is
Retrieve a file container array by grid data as CSV
Return array with keys type and value
return array
getcsvFile用于在大多数情况下将网格包含到magen中的csv到系统
and getCsv() is
Retrieve Grid data as CSV
and return string