可排序搜尋之表格(csv2html)
Table of contents
背景與資源方案
文獻內容之csv檔案
- 國圖搜尋結果轉成csv檔案這一階段,目前還沒有另人滿意的自動方案。
- 但是有比較聰明的手動方案,就是用excel複製、選擇性貼上(轉置)在模版檔案之工作表,將國圖直排的表格貼成橫排的資料庫型式。
- 每個系所的格調略有差異。這是沒法程式化的原因。
- Zotero也可以輸出成csv檔,但是沒有所謂「指導教授」這一欄,還必須自行再對照整理。
html表頭
格式
- 直接抄下網友SeanJM提供的2個css
- 平常OK,但放在github.io時會發生困難,因為style.css會呼叫google的Roboto.css,通過一個未加密的網站(http://…),這對github來說是行不通的(同理適用在後續的2個js)。
- 解決方案就是從該網站下載Roboto.css也放上github.io的repository,這樣不透過http呼叫肯定是沒有問題的。
- 當然style.css的url指令就不需要了。
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="jQuery-Plugin-For-Sortable-Searchable-Tables-Tablesort/css/tablesort.css">
<link rel="stylesheet" type="text/css" href="jQuery-Plugin-For-Sortable-Searchable-Tables-Tablesort/css/styles.css">
<link rel="stylesheet" type="text/css" href="jQuery-Plugin-For-Sortable-Searchable-Tables-Tablesort/css/Roboto.css">
js程式
- github.io不允許呼叫
http://code.jquery.com/jquery-1.10.1.min.js
以及http://yandex.st/highlightjs/7.3/highlight.min.js
這2支程式。作法同樣是從網站上下載後上放上Repository,讓html可以不必透過連外網直接讀到即可。
<title>AERMOD ref</title>
<script type="text/javascript" src="jQuery-Plugin-For-Sortable-Searchable-Tables-Tablesort/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="jQuery-Plugin-For-Sortable-Searchable-Tables-Tablesort/highlight.min.js"></script>
<script type="text/javascript" src="jQuery-Plugin-For-Sortable-Searchable-Tables-Tablesort/tablesort.js"></script>
<script type="text/javascript">
// For Demo Purposes
$(function () {
$('table.table-sort').tablesort();
hljs.initHighlightingOnLoad(); // Syntax Hilighting
});
</script>
</head>
本體
表頭
- 表頭與傳統的表格有些不太一樣,呼叫js程式
table-sort
、table-sort-search
、以及table-sort-show-search-count
等3支程式
<body>
<table class="table-sort table-sort-search table-sort-show-search-count">
<thead>
<tr style="text-align: center;">
<th class="table-sort">類型</th>
<th class="table-sort">研究生</th>
<th class="table-sort">出版年</th>
<th class="table-sort">論文名稱</th>
<th class="table-sort">指導教授</th>
<th class="table-sort">學位</th>
<th class="table-sort">校院名稱</th>
<th class="table-sort">系所名稱</th>
</tr>
</thead>
表內容
<tbody><tr>
<td>HRA</td>
<td>丁玉苓</td>
<td align="right">2020</td>
<td><a href=https://hdl.handle.net/11296/w9ap6u target="_block">半導體封裝及測試性工業區有害空氣污染物健康風險評估-以楠梓加工出口區為例</a></td>
<td>林清和</td>
<td>碩士</td>
<td>輔英科技大學</td>
<td>環境工程與科學系碩士班</td>
</tr>
...
</tbody></table>
實作範例
Reference