[Cordova] Apache Cordova localStoage 사용하기!
Apache Cordova localStoage
var storage = window.localStorage;
var value = storage.getItem(key); // Pass a key name to get its value.
storage.setItem(key, value) // Pass a key name and its value to add or update that key.
storage.removeItem(key) // Pass a key name to remove that key from storage.
출처 : https://cordova.apache.org/docs/en/latest/cordova/storage/storage.html
위 코드(공식 홈페이지에서 제공하는)를 가지고 실제 어플리케이션에 응용해보았습니다.
실제로 잘 동작하는 것을 확인할 수 있었습니다.
<script>
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.localStorage.setItem("uniqueKey", uniqueKey);
}
function test(){
var test_value = window.localStorage.getItem("uniqueKey");
//확인해보자
alert(test_value);
}
</script>
도움이 되셨다면, 좋아요 살짝 눌러주세요 ^ ^
질문은 댓글을 달아주세요. 감사합니다.