@thanhnguyen
Bạn nên debug trong code nó xem có đọc được file ở các column đó không, check line_ending trong file và setting của bạn nữa.
Mình nghĩ nó vẫn đọc được nhưng khả năng sai delimiter, enclosure hoặc bước mapping lỗi
Nếu ko đc quay lại dùng phpexcel thôi, thằng này wrap lại nó nhưng phpexcel chưa thấy issue gì liên quan đến japanese như này.
Bác muốn làm với nhóm chat thì bỏ dòng cái if này trong code đi bác nhé. Tại vì nhóm chat nhiều tin nhắn quá mà Database bằng google sheet thì nó lại có giới hạn nên em bỏ k lưu tin nhắn của group chat thôi bác
Mình cũng thử cách này rồi Trung ơi.
Vấn đề nó bị từ lúc read line rồi.
Nếu là bị lỗi font thì dùng mb_convert_encoding() sẽ có tác dụng.
Ở đây mình dd($row) nó đã bị null hết rùi huhu
Của mình nó đang gặp vấn đề với UTF-8 và SJIS đó Hưng. Việt Nhật đều bó tay.
Không rõ là có phải do version mới có vấn đề ko. Ở version 2.1 mình thấy ko bị sao.
Cơ mà muốn dùng version cao nó có nhiều cái hay ho hơn
<?phpnamespaceApp\Imports;useApp\User;useMaatwebsite\Excel\Concerns\ToModel;useMaatwebsite\Excel\Concerns\Importable;useMaatwebsite\Excel\Concerns\WithStartRow;useMaatwebsite\Excel\Concerns\WithBatchInserts;useMaatwebsite\Excel\Concerns\WithChunkReading;useIlluminate\Contracts\Queue\ShouldQueue;useApp\Models\TmpAlbum;// We can use WithHeadingRow if all of column has unique name// use Maatwebsite\Excel\Concerns\WithHeadingRow;classAlbumImportimplementsToModel, WithBatchInserts,WithChunkReading, ShouldQueue,WithStartRow
{useImportable;publicfunctionmodel(array$row){// echo "<pre>";// $i = 0;// // echo ++$i . ". " . $row[0];// print_r($row);die;$album=['id'=>$row[0],'title'=>$row[2],'text'=>$row[3],'image_url'=>"http://xxx",];dd($row);if($row[0]){returnnewTmpAlbum($album);}}publicfunctionstartRow():int{return2;}publicfunctionbatchSize():int{return1000;}publicfunctionchunkSize():int{return1000;}}
Sửa 1 vài thứ khác mà có vẻ chưa đúng chỗ ngứa nên chưa ổn lắm.
config/excel.php
<?phpreturnarray('cache'=>[/*
|--------------------------------------------------------------------------
| Enable/Disable cell caching
|--------------------------------------------------------------------------
*/'enable'=>true,/*
|--------------------------------------------------------------------------
| Caching driver
|--------------------------------------------------------------------------
|
| Set the caching driver
|
| Available methods:
| memory|gzip|serialized|igbinary|discISAM|apc|memcache|temp|wincache|sqlite|sqlite3
|
*/'driver'=>'memory',/*
|--------------------------------------------------------------------------
| Cache settings
|--------------------------------------------------------------------------
*/'settings'=>['memoryCacheSize'=>'32MB','cacheTime'=>600],/*
|--------------------------------------------------------------------------
| Memcache settings
|--------------------------------------------------------------------------
*/'memcache'=>['host'=>'localhost','port'=>11211,],/*
|--------------------------------------------------------------------------
| Cache dir (for discISAM)
|--------------------------------------------------------------------------
*/'dir'=>storage_path('cache')],'properties'=>['creator'=>'Maatwebsite','lastModifiedBy'=>'Maatwebsite','title'=>'Spreadsheet','description'=>'Default spreadsheet export','subject'=>'Spreadsheet export','keywords'=>'maatwebsite, excel, export','category'=>'Excel','manager'=>'Maatwebsite','company'=>'Maatwebsite',],/*
|--------------------------------------------------------------------------
| Sheets settings
|--------------------------------------------------------------------------
*/'sheets'=>[/*
|--------------------------------------------------------------------------
| Default page setup
|--------------------------------------------------------------------------
*/'pageSetup'=>['orientation'=>'portrait','paperSize'=>'9','scale'=>'100','fitToPage'=>false,'fitToHeight'=>true,'fitToWidth'=>true,'columnsToRepeatAtLeft'=>['',''],'rowsToRepeatAtTop'=>[0,0],'horizontalCentered'=>false,'verticalCentered'=>false,'printArea'=>null,'firstPageNumber'=>null,],],/*
|--------------------------------------------------------------------------
| Creator
|--------------------------------------------------------------------------
|
| The default creator of a new Excel file
|
*/'creator'=>'Maatwebsite','csv'=>[/*
|--------------------------------------------------------------------------
| Delimiter
|--------------------------------------------------------------------------
|
| The default delimiter which will be used to read out a CSV file
|
*/'delimiter'=>',',/*
|--------------------------------------------------------------------------
| Enclosure
|--------------------------------------------------------------------------
*/'enclosure'=>'"',/*
|--------------------------------------------------------------------------
| Line endings
|--------------------------------------------------------------------------
*/'line_ending'=>"\r\n",/*
|--------------------------------------------------------------------------
| setUseBom
|--------------------------------------------------------------------------
*/'use_bom'=>true],'export'=>[/*
|--------------------------------------------------------------------------
| Autosize columns
|--------------------------------------------------------------------------
|
| Disable/enable column autosize or set the autosizing for
| an array of columns ( array('A', 'B') )
|
*/'autosize'=>true,/*
|--------------------------------------------------------------------------
| Autosize method
|--------------------------------------------------------------------------
|
| --> PHPExcel_Shared_Font::AUTOSIZE_METHOD_APPROX
| The default is based on an estimate, which does its calculation based
| on the number of characters in the cell value (applying any calculation
| and format mask, and allowing for wordwrap and rotation) and with an
| "arbitrary" adjustment based on the font (Arial, Calibri or Verdana,
| defaulting to Calibri if any other font is used) and a proportional
| adjustment for the font size.
|
| --> PHPExcel_Shared_Font::AUTOSIZE_METHOD_EXACT
| The second method is more accurate, based on actual style formatting as
| well (bold, italic, etc), and is calculated by generating a gd2 imagettf
| bounding box and using its dimensions to determine the size; but this
| method is significantly slower, and its accuracy is still dependent on
| having the appropriate fonts installed.
|
*/'autosize-method'=>PHPExcel_Shared_Font::AUTOSIZE_METHOD_APPROX,/*
|--------------------------------------------------------------------------
| Auto generate table heading
|--------------------------------------------------------------------------
|
| If set to true, the array indices (or model attribute names)
| will automatically be used as first row (table heading)
|
*/'generate_heading_by_indices'=>true,/*
|--------------------------------------------------------------------------
| Auto set alignment on merged cells
|--------------------------------------------------------------------------
*/'merged_cell_alignment'=>'left',/*
|--------------------------------------------------------------------------
| Pre-calculate formulas during export
|--------------------------------------------------------------------------
*/'calculate'=>false,/*
|--------------------------------------------------------------------------
| Include Charts during export
|--------------------------------------------------------------------------
*/'includeCharts'=>false,/*
|--------------------------------------------------------------------------
| Default sheet settings
|--------------------------------------------------------------------------
*/'sheets'=>[/*
|--------------------------------------------------------------------------
| Default page margin
|--------------------------------------------------------------------------
|
| 1) When set to false, default margins will be used
| 2) It's possible to enter a single margin which will
| be used for all margins.
| 3) Alternatively you can pass an array with 4 margins
| Default order: array(top, right, bottom, left)
|
*/'page_margin'=>false,/*
|--------------------------------------------------------------------------
| Value in source array that stands for blank cell
|--------------------------------------------------------------------------
*/'nullValue'=>null,/*
|--------------------------------------------------------------------------
| Insert array starting from this cell address as the top left coordinate
|--------------------------------------------------------------------------
*/'startCell'=>'A1',/*
|--------------------------------------------------------------------------
| Apply strict comparison when testing for null values in the array
|--------------------------------------------------------------------------
*/'strictNullComparison'=>false],/*
|--------------------------------------------------------------------------
| Store settings
|--------------------------------------------------------------------------
*/'store'=>[/*
|--------------------------------------------------------------------------
| Path
|--------------------------------------------------------------------------
|
| The path we want to save excel file to
|
*/'path'=>storage_path('exports'),/*
|--------------------------------------------------------------------------
| Return info
|--------------------------------------------------------------------------
|
| Whether we want to return information about the stored file or not
|
*/'returnInfo'=>false],/*
|--------------------------------------------------------------------------
| PDF Settings
|--------------------------------------------------------------------------
*/'pdf'=>[/*
|--------------------------------------------------------------------------
| PDF Drivers
|--------------------------------------------------------------------------
| Supported: DomPDF, tcPDF, mPDF
*/'driver'=>'DomPDF',/*
|--------------------------------------------------------------------------
| PDF Driver settings
|--------------------------------------------------------------------------
*/'drivers'=>[/*
|--------------------------------------------------------------------------
| DomPDF settings
|--------------------------------------------------------------------------
*/'DomPDF'=>['path'=>base_path('vendor/dompdf/dompdf/')],/*
|--------------------------------------------------------------------------
| tcPDF settings
|--------------------------------------------------------------------------
*/'tcPDF'=>['path'=>base_path('vendor/tecnick.com/tcpdf/')],/*
|--------------------------------------------------------------------------
| mPDF settings
|--------------------------------------------------------------------------
*/'mPDF'=>['path'=>base_path('vendor/mpdf/mpdf/')],]]],'filters'=>[/*
|--------------------------------------------------------------------------
| Register read filters
|--------------------------------------------------------------------------
*/'registered'=>['chunk'=>'Maatwebsite\Excel\Filters\ChunkReadFilter'],/*
|--------------------------------------------------------------------------
| Enable certain filters for every file read
|--------------------------------------------------------------------------
*/'enabled'=>[]],'import'=>[/*
|--------------------------------------------------------------------------
| Has heading
|--------------------------------------------------------------------------
|
| The sheet has a heading (first) row which we can use as attribute names
|
| Options: true|false|slugged|slugged_with_count|ascii|numeric|hashed|trans|original
|
*/'heading'=>'original',/*
|--------------------------------------------------------------------------
| First Row with data or heading of data
|--------------------------------------------------------------------------
|
| If the heading row is not the first row, or the data doesn't start
| on the first row, here you can change the start row.
|
*/'startRow'=>1,/*
|--------------------------------------------------------------------------
| Cell name word separator
|--------------------------------------------------------------------------
|
| The default separator which is used for the cell names
| Note: only applies to 'heading' settings 'true' && 'slugged'
|
*/'separator'=>'_',/*
|--------------------------------------------------------------------------
| Slug whitelisting
|--------------------------------------------------------------------------
|
| Here you can whitelist certain characters in the slug.
| E.g. user.last_name will not remove . and _
| Note: only applies to 'heading' settings 'true' && 'slugged'
|
*/'slug_whitelist'=>'._',/*
|--------------------------------------------------------------------------
| Include Charts during import
|--------------------------------------------------------------------------
*/'includeCharts'=>false,/*
|--------------------------------------------------------------------------
| Sheet heading conversion
|--------------------------------------------------------------------------
|
| Convert headings to ASCII
| Note: only applies to 'heading' settings 'true' && 'slugged'
|
*/'to_ascii'=>true,/*
|--------------------------------------------------------------------------
| Import encoding
|--------------------------------------------------------------------------
*/'encoding'=>['input'=>'UTF-8','output'=>'UTF-8'],/*
|--------------------------------------------------------------------------
| Calculate
|--------------------------------------------------------------------------
|
| By default cells with formulas will be calculated.
|
*/'calculate'=>true,/*
|--------------------------------------------------------------------------
| Ignore empty cells
|--------------------------------------------------------------------------
|
| By default empty cells are not ignored
|
*/'ignoreEmpty'=>false,/*
|--------------------------------------------------------------------------
| Force sheet collection
|--------------------------------------------------------------------------
|
| For a sheet collection even when there is only 1 sheets.
| When set to false and only 1 sheet found, the parsed file will return
| a row collection instead of a sheet collection.
| When set to true, it will return a sheet collection instead.
|
*/'force_sheets_collection'=>false,/*
|--------------------------------------------------------------------------
| Date format
|--------------------------------------------------------------------------
|
| The format dates will be parsed to
|
*/'dates'=>[/*
|--------------------------------------------------------------------------
| Enable/disable date formatting
|--------------------------------------------------------------------------
*/'enabled'=>true,/*
|--------------------------------------------------------------------------
| Default date format
|--------------------------------------------------------------------------
|
| If set to false, a carbon object will return
|
*/'format'=>false,/*
|--------------------------------------------------------------------------
| Date columns
|--------------------------------------------------------------------------
*/'columns'=>[]],/*
|--------------------------------------------------------------------------
| Import sheets by config
|--------------------------------------------------------------------------
*/'sheets'=>[/*
|--------------------------------------------------------------------------
| Example sheet
|--------------------------------------------------------------------------
|
| Example sheet "test" will grab the firstname at cell A2
|
*/'test'=>['firstname'=>'A2']]],'views'=>[/*
|--------------------------------------------------------------------------
| Styles
|--------------------------------------------------------------------------
|
| The default styles which will be used when parsing a view
|
*/'styles'=>[/*
|--------------------------------------------------------------------------
| Table headings
|--------------------------------------------------------------------------
*/'th'=>['font'=>['bold'=>true,'size'=>12,]],/*
|--------------------------------------------------------------------------
| Strong tags
|--------------------------------------------------------------------------
*/'strong'=>['font'=>['bold'=>true,'size'=>12,]],/*
|--------------------------------------------------------------------------
| Bold tags
|--------------------------------------------------------------------------
*/'b'=>['font'=>['bold'=>true,'size'=>12,]],/*
|--------------------------------------------------------------------------
| Italic tags
|--------------------------------------------------------------------------
*/'i'=>['font'=>['italic'=>true,'size'=>12,]],/*
|--------------------------------------------------------------------------
| Heading 1
|--------------------------------------------------------------------------
*/'h1'=>['font'=>['bold'=>true,'size'=>24,]],/*
|--------------------------------------------------------------------------
| Heading 2
|--------------------------------------------------------------------------
*/'h2'=>['font'=>['bold'=>true,'size'=>18,]],/*
|--------------------------------------------------------------------------
| Heading 2
|--------------------------------------------------------------------------
*/'h3'=>['font'=>['bold'=>true,'size'=>13.5,]],/*
|--------------------------------------------------------------------------
| Heading 4
|--------------------------------------------------------------------------
*/'h4'=>['font'=>['bold'=>true,'size'=>12,]],/*
|--------------------------------------------------------------------------
| Heading 5
|--------------------------------------------------------------------------
*/'h5'=>['font'=>['bold'=>true,'size'=>10,]],/*
|--------------------------------------------------------------------------
| Heading 6
|--------------------------------------------------------------------------
*/'h6'=>['font'=>['bold'=>true,'size'=>7.5,]],/*
|--------------------------------------------------------------------------
| Hyperlinks
|--------------------------------------------------------------------------
*/'a'=>['font'=>['underline'=>true,'color'=>['argb'=>'FF0000FF'],]],/*
|--------------------------------------------------------------------------
| Horizontal rules
|--------------------------------------------------------------------------
*/'hr'=>['borders'=>['bottom'=>['style'=>'thin','color'=>['FF000000']],]]]]);
Chu thot viet bai co tam qua co the cho minh ket ban de hoc hoi va giao luu them duoc ko ? Mail cua minh la qtuyen43 @ gmail.com
P/s: Vi mot so li do nen minh ko go tieng viet co dau duoc.
THẢO LUẬN
Đây bác. AWS cho 25gb free để ghi bác nhé
@chu.xuan.thang (votay)
@thanhnguyen có vẻ file config của bạn là phiên bản cũ không tương thích với 3.1 hay sao, rất có khả năng vậy https://github.com/Maatwebsite/Laravel-Excel/blob/3.1/config/excel.php
@thanhnguyen Bạn nên debug trong code nó xem có đọc được file ở các column đó không, check line_ending trong file và setting của bạn nữa. Mình nghĩ nó vẫn đọc được nhưng khả năng sai delimiter, enclosure hoặc bước mapping lỗi Nếu ko đc quay lại dùng phpexcel thôi, thằng này wrap lại nó nhưng phpexcel chưa thấy issue gì liên quan đến japanese như này.
Trong phần test case, mình có thể bỏ cột "Kết quả thực tế" được không? Vì trong phần Kết quả mong đợi đã cho biết các tiêu chí để case pass rồi.
@thanhnguyen dữ liệu từ request vẫn bình thường đúng không nhỉ. bạn thử sửa 'to_ascii' => false xem đc ko.
thấy bác có bảo đang dùng dynamoDB. bác share code cho em tham khảo với được không ?
okay e cảm ơn bác !
Bác muốn làm với nhóm chat thì bỏ dòng cái if này trong code đi bác nhé. Tại vì nhóm chat nhiều tin nhắn quá mà Database bằng google sheet thì nó lại có giới hạn nên em bỏ k lưu tin nhắn của group chat thôi bác
Cái này là chỉ dành cho cuộc trò chuyện giữa 2 người thôi đúng không bác ? Bác đã thử với nhóm chat chưa ?
Có hình minh họa cho từng design pattern nhìn rất thích, trực quan sinh động
Mình cũng thử cách này rồi Trung ơi. Vấn đề nó bị từ lúc read line rồi. Nếu là bị lỗi font thì dùng mb_convert_encoding() sẽ có tác dụng. Ở đây mình dd($row) nó đã bị null hết rùi
huhu
Của mình nó đang gặp vấn đề với UTF-8 và SJIS đó Hưng. Việt Nhật đều bó tay.
Không rõ là có phải do version mới có vấn đề ko. Ở version 2.1 mình thấy ko bị sao.
Cơ mà muốn dùng version cao nó có nhiều cái hay ho hơn
@HuyDQ Thanks Huy, cái này mình thử trước khi tạo question rùi
, mà ko đc. Ahuhu
@thanhnguyen mình tìm thấy 1 issue có vẻ khá giống case của bạn. Bạn thử sửa cái chỗ:
Link Issue: https://github.com/Maatwebsite/Laravel-Excel/issues/1171
@HuyDQ
Bên controller
Còn đây là import model
@thanhnguyen phần đọc file csv bạn đang viết như nào nhỉ ??
Đây bạn. Mình cũng đọc 1 số issue trên github,
Chu thot viet bai co tam qua co the cho minh ket ban de hoc hoi va giao luu them duoc ko ? Mail cua minh la qtuyen43 @ gmail.com
P/s: Vi mot so li do nen minh ko go tieng viet co dau duoc.
Anh ơi, anh có video Demo giấu tin và giải mã sd thuật toán BPCS chưa ạ