如何生成Microsoft Office Excel支持的CSV文件?
我使用Laravel / Excel(http://www.maatwebsite.nl/laravel-excel/)创建了CSV,内容是日文字符。
一切都很完美,直到我使用Microsoft Office Excel打开CSV,日语字符不能被Microsoft Office Excel读取,我已经在我的视图上将文本编码为UTF-8(因为我使用loadView()函数创建了CSV) / p>
我尝试通过记事本打开CSV并保存而不做任何更改,然后使用Microsoft Office Excel再次打开它,并显示日文字符。
发生了什么事?我用记事本打开了两个文件(默认的一个和来自记事本的保存的csv)并检查不同,内容文件没有不同。
我的观点:
<html>
<head>
<meta http-equiv="Content-Type" content="text/plain; charset=UTF-8" />
</head>
<body>
<table>
<thead>
<tr>
@foreach( $keys as $key )
<th>{!! $key !!}</th>
@endforeach
</tr>
</thead>
<tbody>
@foreach( $contents as $content )
<tr>
@foreach( $keys as $key )
<td>{!! $content[ $key ] !!}</td>
@endforeach
</tr>
@endforeach
</tbody>
</table>
</body>
</html>
我的控制器:
Excel::create( 'locations-' . date( 'Y-m-d' ), function ( $export_file ) {
$export_file->sheet( 'Locations', function( $sheet ) {
$sheet->loadView( 'admin.layout.export', Location::getExportData() );
} );
} )->download( $type );
Location :: getExportData():
public static function getExportData() {
$data[ 'contents' ] = [];
$data[ 'keys' ] = [
'control',
'name',
'type',
'address',
'longitude',
'latitude',
'description'
];
$count = Location::count();
if( $count > 0 ) {
$off_ex = 1000;
for( $i = 0; $i < ( $count / $off_ex ); $i++ ) {
$locations = Location::skip( $i * $off_ex )->take( $off_ex )->get();
foreach ( $locations as $key => $location ) {
$data[ 'contents' ][] = [
'control' => '',
'name' => mb_convert_encoding( $location->name, "UTF-8" ),
'type' => $location->type,
'address' => $location->address,
'longitude' => $location->longitude,
'latitude' => $location->latitude,
'description' => $location->description
];
}
}
}
return $data;
}
图片: