目前分類:Programming (471)
- Jul 28 Wed 2021 11:30
[Javascript] JS匯出html的table表格(續)-圖片匯出問題
- Jul 26 Mon 2021 17:03
[Javascript] JS匯出html的table表格
- Jul 22 Thu 2021 18:37
[dataTable][轉] 解決Jquery DataTable csv導出亂碼
官方範例在匯出CSV時,預設是 UTF-8 without BOM,
導致部分電腦開啟時會產生亂碼
需要改設定值 bom : true 才能解決
官方Docoument連結 : https://datatables.net/reference/button/csv
範例:
$('.js-exportable').DataTable({
dom: 'Bfrtip',
responsive: true,
buttons: [
'copy', {
extend: 'csv',
text: 'CSV',
bom : true
}, 'excel', 'pdf', 'print'
]
});
- Jul 22 Thu 2021 18:06
[dataTable] 匯出特定欄或列 - Exclude column from export in Datatables Buttons
- Jul 21 Wed 2021 17:38
[PHP] GuzzleHttp PUT呼叫
$r = $client->request('PUT', 'http://httpbin.org/put', [ 'json' => ['foo' => 'bar'] ]);
使用request,第一格帶PUT,第二格帶url,第三格帶陣列,陣列中要帶名為"json"參數,內容為要丟進此URL的參數們的陣列。
- Jul 07 Wed 2021 15:54
[Notepad++] 比較兩份檔案內容
- Jun 28 Mon 2021 11:06
[PHP] phpspreadsheet 讀寫檔案
非常好用的php讀寫各種報表檔案的plug-in
https://phpspreadsheet.readthedocs.io/en/latest/topics/reading-and-writing-to-file/
- Jun 09 Wed 2021 16:06
[Laravel] Laravel migration 中的 $table->timestamps();
- Jun 07 Mon 2021 14:34
[Laravel][PHP][轉] 使用 Composer 管理 PHP 套件
- Jun 07 Mon 2021 11:30
[Laravel] Laravel PackageManifest.php: Undefined index: name
I'm just trying to deploy my application and I just ran composer update on my server and I got the following error:
In PackageManifest.php line 122: Undefined index: name
- Jun 02 Wed 2021 09:50
[轉][jQuery] jQuery中防止重複綁定事件的問題
- Jun 01 Tue 2021 15:50
[轉][Laravel] Excel/CSV 導入導出庫,支持大文件,樣式設置
- Jun 01 Tue 2021 15:03
[datatable] 自訂dataTable檔案下載的檔名
- May 25 Tue 2021 16:58
[轉][PHP] 【PHP】透過glob、scandir、readdir取得資料夾內的檔案列表
- May 25 Tue 2021 16:53
[轉][PHP] PHP filesize MB/KB conversion
- May 25 Tue 2021 16:34
[轉][Javascript] 網頁 input 使用 accept 限制上傳檔案類型
- May 25 Tue 2021 09:37
[轉][jQuery] jQuery UI DatePicker to show month year only
- May 25 Tue 2021 09:34
[jQuery] jQuery Datepicker to Pick Year Only – YearPicker.js
- May 13 Thu 2021 14:59
[dataTable][轉] 解決dataTables再次調用不能清空數據,解決Cannot reinitialise DataTable問題
- Apr 28 Wed 2021 14:56
[Excel][轉] Excel 計算數值在資料範圍中出現的次數 - COUNTIF