我需要一個 HTML5 的客戶端瀏覽器資料庫。我有哪些選擇?
本文將要執行的任務是:我需要一個 HTML5 的客戶端瀏覽器資料庫,我有哪些選擇?在深入探討文章之前,讓我們先來看一下。
HTML5 引入了兩種類似於 HTTP 會話 Cookie 的機制,用於在客戶端儲存結構化資料。這兩種儲存分別是會話儲存和本地儲存,它們將用於處理不同的情況。
您可以為此目的在 HTML5 中使用本地儲存。本地儲存設計用於跨多個視窗的儲存,並且持續時間超過當前會話。
本地儲存
Web 儲存應用程式程式設計介面包含 HTML5 本地儲存的部分。這是一種網頁用來在使用者的 Web 瀏覽器中本地儲存命名鍵/值對的技術。通常使用本地儲存在來自同一域的 HTML 頁面中儲存和檢索資料。
本地儲存使用 localStorage 物件永久儲存您整個網站的資料。
localStorage.setItem(key, value) 儲存與鍵關聯的資料。
localStorage.getItem(key) 檢索與鍵關聯的資料。
為了更好地理解本地儲存如何提供幫助,讓我們考慮以下示例。
示例 1:使用 HTML 本地儲存
在下面的示例中,我們使用本地儲存在 Web 中儲存資料,無需過期。
<!DOCTYPE html> <html> <body> <input id="name" type="name" placeholder="enter your name" /> <button type="submit" onClick="handleClick()">Click</button> <br /> <div id="Varma"></div> <script> function handleClick() { if (typeof Storage !== "undefined") { let name = document.getElementById("name").value; localStorage.setItem("name", name); document.getElementById("Varma").innerHTML = "Welcome To Tutorialspoint" + " " + localStorage.name; } else { alert("Sorry! your browser doesn't support Web Storage"); } } </script> </body> </html>
執行上述指令碼後,它將生成顯示輸入欄位和單擊按鈕的輸出。當用戶在輸入欄位中輸入內容後單擊按鈕時,資料將儲存在本地儲存中,並且沒有驗證。
示例 2
考慮下面的示例,我們使用本地儲存在 Web 中儲存資料,無需過期。
<!DOCTYPE HTML> <!DOCTYPE HTML> <html> <body> <script> if( localStorage.hits ){ localStorage.hits = Number(localStorage.hits) +1; } else{ localStorage.hits = 1; } document.write("Total Hits :" + localStorage.hits ); </script> <p>Refresh the page to increase number of hits.</p> <p>Close the window and open it again and check the result.</p> </body> </html>
當指令碼執行時,它將生成一個包含總點選次數和提示的輸出。當用戶重新整理網頁時,點選次數會增加並存儲該值。
廣告