希望你有 一個很好的一天,我怎麼可以插入本地存儲的值到數據庫中,這裏是我使用插入本地存儲值插入數據庫
function fun() {
var count = localStorage.getItem("count") || 0;
localStorage.setItem("count", ++count);
}
function result() {
document.write("your mark is " + (localStorage.getItem("count") || 0) + " from 9")
}
function clear(){
window.localStorage.clear();
}
代碼我想插入變量數值到數據庫中..有可能嗎?
使用REST創建寫入到數據庫服務,然後從JavaScript越過localStorage.getItem調用服務(」計數「)作爲參數之一。我確定有一個更簡單的方法。 –
[HTML5 localStorage數據庫使用類似於JSON格式的推動者](https://github.com/joaoN1x/DBosta.js) – deadman
**是**這是可能的! –