我正在用Typ3扩展名生成一个csv文件,但在我的csv文件中有一些神秘的行。
<p><strong>Sorry, the requested view was not found.</strong></p>
<p>The technical reason is: <em>No template was found. View could not be resolved for action "exportPrueflinge" in class "ReReRereControllerExportController"</em>.</p>
我的代码如下:
从我的控制器,我调用一个助手类,代码如下:
public function genCSV($array, $filename) {
// Anlegen eine termporären datei mit Schreibrechten
$fp = null;
$fp = fopen('php://memory', 'w');
// Array in CSV übertragen
foreach ($array as $fields) {
fputcsv($fp, $fields, ";");
}
rewind($fp);
header('Cache-Control: no-cache, must-revalidate');
header('Pragma: no-cache');
header('Content-Type: application/csv');
header('Content-Disposition: attachement; filename="' . $filename . '";');
// Download starten
fpassthru($fp);
}
我该怎么做才能避免这两条错误的线路?它们位于csv文件的末尾。
您必须在genCSV()函数的末尾添加return FALSE;
,然后模板呈现错误消息将不会添加到CSV文件中。
这听起来有点肮脏,但请尝试在Templates/Export中创建名为:exportPrueflinge.html的视图模板。