IndexedDB 활용!
IndexedDB 데이터 읽어오기 var transaction = db.transaction(["test"], "readonly"); var objectStore = transaction.objectStore("test"); //x is some value var ob = objectStore.get(x); ob.onsuccess = function(e) { } db.transaction(["test"], "readonly").objectStore("test").get(X).onsuccess = function(e) {} 더 많은 값으로 자세하기 읽어오기 var transaction = db.transaction(["test"], "readonly"); var objectStore = transactio..
웹개발/DataBase
2015. 9. 7. 15:15