可以使用以下方法使用 HTML 讀取 CSV 檔案:JavaScript 框架 Papa Parse:輕鬆解析 CSV 文件,並自動處理設定選項。使用 FileReader API:在客戶端直接讀取本機 CSV 檔案。使用第三方函式庫,例如 jQuery CSV:與 jQuery 集成,提供簡化的方法來處理 CSV 資料。
CSV(逗號分隔值)是常用的文字檔案格式,用於儲存表格數據。要使用HTML 讀取CSV 文件,可以採用以下步驟:
<code class="js">Papa.parse("data.csv", { // 配置选项 header: true, delimiter: ",", skipEmptyLines: true, complete: function (results) { // 处理结果数据 } });</code>
<code class="js">const csvData = "name,age,city\nJohn,25,New York"; const blob = new Blob([csvData], { type: "text/csv" }); FileSaver.saveAs(blob, "data.csv");</code>
<code class="js">const xhr = new XMLHttpRequest(); xhr.onload = function () { const csvData = xhr.responseText; // 手动解析 CSV 数据 }; xhr.open("GET", "data.csv"); xhr.send();</code>
<code class="js">const file = document.querySelector('input[type="file"]'); file.addEventListener("change", function () { const reader = new FileReader(); reader.onload = function () { const csvData = reader.result; // 手动解析 CSV 数据 }; reader.readAsText(file.files[0]); });</code>
<code class="js">$.ajax({ url: "data.csv", success: function (data) { // data 将包含 CSV 数据 } }); // 也可以使用以下代码从本地文件读取 CSV $("#file-input").csv({ onComplete: function (results) { // results 将包含 CSV 数据 } });</code>
以上是html怎麼讀取csv文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!