var dbGlobals = new Object();
dbGlobals.db = null;
dbGlobals.description = "This database is used to store files locally.";
dbGlobals.name = "localFileStorage";
dbGlobals.version = 1;
dbGlobals.storeName = "fileObjects";
dbGlobals.message = "";
dbGlobals.empty = true; // --------------------------------------------------- function requiredFeaturesSupported() {
switch(window.location.protocol) {
case "http:":
break;
case "https:":
break;
case "ms-wwa-web":
break;
case "ms-wwa":
break;
default:
document.getElementById("bodyElement").innerHTML = "<h3>IndexedDB pages must be served via the http:// or https:// protocol - resolve this issue and try again.</h3>";
return false;
} // switch if(!document.getElementById("fileSelector").files) {
document.getElementById("bodyElement").innerHTML = "<h3>File API is not fully supported - upgrade your browser to the latest version.</h3>";
return false;
} if(!window.indexedDB) {
if(window.mozIndexedDB) {
window.indexedDB = widnow.mozIndexedDB;
}
else if(window.webkitIndexedDB) {
window.indexedDB = window.webkitIndexedDB;
IDBCursor = window.webkitIDBCursor;
IDBDatabaseException = window.webkitIDBDatabaseException;
IDBRequest = window.webkitIDBRequest;
IDBKeyRange = window.webkitIDBKeyRange;
IDBTransaction = window.webkitIDBTransaction;
}
else {
document.getElementById("bodyElement").innerHTML = "<h3>IndexedDB is not supported - upgrade your browser to the latest version.</h3>";
return false;
}
} // if if(!window.indexedDB.deleteDatabase) {
document.getElementById("bodyElement").innerHTML = "<h3>The required version of IndexedDB is not supported.</h3>";
return false;
}
return true;
} // requiredFeaturesSupported // -------------------------------------------------- if(requiredFeaturesSupported()) {
document.getElementById("openButton").addEventListener("click", openDB, false);
document.getElementById("populateButton").addEventListener("click", populateDB, false);
document.getElementById("displayButton").addEventListener("click", displayDB, false);
document.getElementById("deleteButton").addEventListener("click", deleteDB, false); document.getElementById("fileSelector").addEventListener("change", handleFileSelection, false);
} // if // ----------------------------------------- function openDB() {
console.log("------------------------openDB_onupgradeneeded()-----------------------");
displayMessage("<p>The database will be created/opened here...</p>"); if(!window.indexedDB.open) {
console.log("window.indexedDB.open is null in openDB()");
return;
} // if try {
var openRequest = window.indexedDB.open(dbGlobals.name, dbGlobals.version); // openRequest.onerror = function(evt) {console.log("openRequest.onerror fired in openDB() - error: " + (evt.target.error ? evt.target.error : evt.target.errorCode));};
openRequest.onblocked = openDB_onblocked;
openRequest.onupgradeneeded = openDB_onupgradeneeded;
openRequest.onsuccess = openDB_onsuccess;
}catch(ex) {
console.log("window.indexedDB.open exception in openDB() - " + ex.message);
}
} // openDB // -------------------------------------------------------------- function openDB_onblocked(evt) {
console.log("openDB_onblocked()"); var message = "<p>The database is blocked - error code: " + (evt.target.error ? evt.target.error : evt.target.errorCode) + "</p>";
message += "<p>If this page is open in other browser windows, close these windows.</p>"; displayMessage(message);
} // openDB_onblocked // -------------------------------------------- function openDB_onupgradeneeded(evt) {
console.log("openDB_onupgradeneeded()");
displayMessage("<p>Your request has been queued.</p>"); var db = dbGlobals.db = evt.currentTarget.result; // A successfully opened database results in a database object, which we place in our global IndexedDB variable. if(!db) {
console.log("db (i.e., evt.target.result) is null in openDB_onupgradeneeded()");
return;
} // if try {
db.createObjectStore(dbGlobals.storeName, {keyPath: "name"});
console.log("openDB_onupgradedneeded() success");
}
catch(ex) {
console.log("Exception is openDB_onupgradeneeded() - " + ex.message);
return;
} dbGlobals.message = "<p>The database has been created.</p>"; // A means of communicating this information to the openDB_onsuccess handler.
} // openDB_onupgradeneeded // ------------------------------------------------- function openDB_onsuccess(evt) {
console.log("openDB_onsuccess()");
displayMessage("<p>Your request has been queued.</p>"); var db = dbGlobals.db = evt.target.result; if(!db) {
console.log("db (i.e., evt.target.result) is null in openDB_onsuccess()");
return;
} // if dbGlobals.message += "<p>The database has been opened.</p>";
displayMessage(dbGlobals.message);
dbGlobals.message = "";
} // openDB_onsuccess // ---------------------------------------------- function populateDB() {
console.log("------------------------populateDB()--------------------------"); if(!dbGlobals.db) {
displayMessage("<p>The database hasn't been opened/created yet.</p>");
console.log("db (i.e., dbGlobals.db) is null in populateDB()");
return;
} document.getElementById("fileSelector").style.display = "block"; // Now that we have a valid database, allow the user to put file(s) in it. var message = "<p>Using the below <strong>Browse</strong> button, select one or more files to store in the database.</p>";
message += "<p>Then, click the <strong>Display DB<strong> button to display what's currently in the database.</p>";
displayMessage(message);
} // populateDB // ------------------------------------------------- function displayDB() {
console.log("------------------------displayDB()----------------------------"); var db = dbGlobals.db; if(!db) {
displayMessage("<p>There's no database to display.</p>");
console.log("db (i.e, dbGlobals.db) is null in displayDB()");
return;
} // if try{
var transaction = db.transaction(dbGlobals.storeName, (IDBTransaction.READ_ONLY ? IDBTransaction.READ_ONLY : "readonly"));
} // try
catch(ex) {
console.log("db.transaction() exception in displayDB() - " + ex.messsage);
return;
} // catch try{
var objectStore = transaction.objectStore(dbGlobals.storeName); try {
var cursorRequest = objectStore.openCursor(); cursorRequest.onerror = function(evt) {
console.log("cursorRequest.onerror fired in displayDB() - error code: " + (evt.target.error ? evt.target.error : evt.target.errorCode));
} var fileListHTML = "<p><strong>File(s) in database: </strong></p><ul style='margin: -0.5em 0 1em -1em;'>"; // Be aware that if the database is empty, this variable never gets used. cursorRequest.onsuccess = function(evt) {
console.log("cursorRequest.onsuccess fired in displayDB()"); var cursor = evt.target.result; if(cursor) {
dbGlobals.empty = false;
fileListHTML += "<li>" + cursor.value.name;
fileListHTML += "<p style='margin: 0 0 0 0.75em;'>" + cursor.value.name + "</p>";
fileListHTML += "<p style='margin: 0 0 0 0.75em;'>" + cursor.value.size + " bytes</p>";
cursor.continue();
}
else {
fileListHTML += "</ul>";
displayMessage(fileListHTML);
} if(dbGlobals.empty) {
displayMessage("<p>The database is empty &ndash; there's nothing to display.</p>");
}
}
} // inner try
catch(innerException) {
console.log("Inner try exception in displayDB() - " + innerException.message);
} // inner catch
} // outer try
catch(outerException) {
console.log("Outer try exception in displayDB() - " + outerException.message);
} // outer catch
} // displayDB // ------------------------------------------------- function deleteDB() {
console.log("------------------------deleteDB()-----------------------------");
displayMessage("<p>The database will be deleted here...</p>"); try{
if(dbGlobals.db) {
dbGlobals.db.close(); // If the database is open, you must first close the database connection before deleting it. Otherwise, the delete request waits (possibly forever) for the required close request to occur.
} var deleteRequest = window.indexedDB.deleteDatabase(dbGlobals.name); // Note that we already checked for the availability of the deleteDatabase() method in the above feature detection code.
deleteRequest.onsuccess = function() {
dbGlobals.db = null;
dbGlobals.empty = true;
dbGlobals.message = "";
displayMessage("<p>The database has been deleted.</p>");
console.log("delete success");
}; // deleteRequest.onsuccess
} // try
catch(ex) {
console.log("Exception in deleteDB() - " + ex.message);
} // catch
} // deleteDB // ------------------------------------------------- function handleFileSelection(evt) {
console.log("------------------------handleFileSelection()------------------------"); var files = evt.target.files; // The files selected by the uer (as a FileList object).
console.log(files);
if(!files) {
displayMessage("<p>At least one selected file is invalid - do not select any folders.</p><p>Please reselect and try again.</p>");
return;
} var db = dbGlobals.db;
if(!db) {
console.log("db (i.e., dbGlobals.db) is null in handleFileSelection()");
return;
} // if try{
var transaction = db.transaction(dbGlobals.storeName, (IDBTransaction.READ_WRITE ? IDBTransaction.READ_WRITE : "readwrite"));
} // try
catch(ex) {
console.log("db.transaction exception in handleFileTransaction() - " + ex.message);
return;
} // catch transaction.onerror = function(evt) {
console.log("transaction.onerror fired in handleFileSelection() - error code: " + (evt.target.error ? evt.target.error : evt.target.errorCode));
};
transaction.onabort = function() {
console.log("transaction.onabort fired in handleFileSelection()");
};
transaction.oncomplete = function() {
console.log("transaction.oncomplete fired in handleFileSelection()");
}; files = [
{
name: "sina.jpg",
size: 2813,
type: "text/html"
},
{
name: "indexedDB.html",
size: 808,
type: "text/html"
},
{
name: "m.html",
size: 0,
type: "text/html"
}
]; try {
var objectStore = transaction.objectStore(dbGlobals.storeName); for(var i = 0, file; file = files[i]; i++) {
var putRequest = objectStore.put(file);
putRequest.onsuccess = function() {dbGlobals.empty = false;};
putRequest.onerror = function(evt) {console.log("putRequest.onerror fired in handleFileSelection() - error code: " + (evt.target.error ? evt.target.error : evt.target.errorCode));};
} // for
} // try
catch(ex) {
console.log("Transaction and/or put() exception in handleFileSelection() - " + ex.message);
return;
} // catch document.getElementById("fileSelector").style.display = "none"; // The file(s) have already been selected so remove the "file picker" dialog box.
} // handleFileSelection // -------------------------------------------------- function displayMessage(message) {
document.getElementById("messages").innerHTML = message;
} // displayMessage // ------------------------------------------------------

http://www.huxiu.com/article/21008/1.html

IndexedDB demo showcase的更多相关文章

  1. Django Suit v2-dev 使用

    转:链接:https://www.jianshu.com/p/84fa8219fb48 官方文档: 链接 Git: 链接 install Django Suit 为了适配 Django 有许多不同的版 ...

  2. 010. windows10下安装kivy 1.9.1版

    Microsoft Windows [版本 10.0.14393] 以管理员权限打开cmd (c) 2016 Microsoft Corporation. 保留所有权利. 1. C:\Users\LG ...

  3. Kivy A to Z -- Kivy 示例演示自带名单

    所有的样品已经在Android 4.04 手机正常进行 1.demo/kivycatalog 这个例子说明了如何使用主控件,例如Layout,Button,MediaPlayer,Progress B ...

  4. 95+强悍的jQuery图形效果插件

    现在的网站越来越离不开图形,好的图像效果能让你的网站增色不少.通过JQuery图形效果插件可以很容易的给你的网站添加一些很酷的效果. 使用JQuery插件其实比想象的要容易很多,效果也超乎想象.在本文 ...

  5. indexedDB bootstrap angularjs 前端 MVC Demo

    前端之MVC应用 1.indexedDB(Model): 数据层,前端浏览器 HTML5 API 面向对象数据库,一般现在用的数据库都是关系型数据库. 那么indexeddb有什么特点呢: 首先,从字 ...

  6. 通讯框架 T-io 学习——给初学者的Demo:ShowCase设计分析

    前言 最近闲暇时间研究Springboot,正好需要用到即时通讯部分了,虽然springboot 有websocket,但是我还是看中了 t-io框架.看了部分源代码和示例,先把helloworld敲 ...

  7. js IndexedDB:浏览器端数据库的demo实例

    IndexedDB具有以下特点. (1)键值对储存. IndexedDB内部采用对象仓库(object store)存放数据.所有类型的数据都可以直接存入,包括JavaScript对象.在对象仓库中, ...

  8. Web数据持久化存储IndexedDB(不常用)

    IndexedDB是在浏览器中保存结构化数据的一种数据库,为了替换WebSQL(标准已废弃,但被广泛支持)而出现.IndexedDB使用NoSQL的形式来操作数据库,保存和读取是JavaScript对 ...

  9. HTML5 indexedDB数据库的入门学习(一)

    笔者早些时间看过web sql database,但是不再维护和支持,所以最近初步学习了一下indexedDB数据库,首先indexedDB(简称IDB)和web sql database有很大的差别 ...

随机推荐

  1. java数组的拷贝四种方法:for、clone、System.arraycopy、arrays.copyof

    public class ArrayCopy{ public static void main(String []args){ int []a = {1,3,4,5}; toPrint(a); int ...

  2. GitHub与Versions

    [第一步]建立先仓库 第一步的话看一般的提示就知道了,在github新建一个repository(谷歌可以解决),都是可视化的界面操作,所以难度不大.或者看这里:https://help.github ...

  3. myeclipse2014新感悟

    部署有两种方式:1.直接把文件拷贝到 tomcat下的webroot文件夹下 2.myeclipse软件内部点击“deploy”部署 →点击add→tomcat下的webroot文件夹下 点击完“运行 ...

  4. majikan

  5. System Operations on AWS - Lab 7 - CloudFormation

    CloudFormation模板:创建一个VPC(包含Public子网,Private子网,分别在不同的AZ),创建NAT,Bastion Server在Public子网. 1. 修改并运行AWS C ...

  6. C# 的可空合并运算符(??)到底是怎样的宝宝?

    前言废语 也怪自己小白和不勤奋,没有系统的学习C#相关的东西,工作一年多还是初级小菜,深感不安,来到园子才发现好多钻研技术的人,也渐渐发现自己开始喜欢上了这个编程的世界.今日偶遇??操作符,发现我只看 ...

  7. sql 嵌套事务学习笔记

    以下内容根据此官方文档修改:http://technet.microsoft.com/zh-cn/library/ms189336(v=sql.105).aspx 嵌套事务的使用场景或者说目的主要是为 ...

  8. 通过调整表union all的顺序优化SQL

    操作系统:Windows XP 数据库版本:SQL Server 2005 今天遇到一个SQL,过滤条件是自动生成的,因此,没法通过调整SQL的谓词达到优化的目的,只能去找SQL中的“大表”.有一个视 ...

  9. 安装cocoaPod 的问题

    APPLEdeiMac:cocoapod案例 apple$ pod install Analyzing dependencies [!] The dependency `Reachability (~ ...

  10. IOS-objectForKey与valueForKey在NSDictionary中的差异

    从 NSDictionary 取值的时候有两个方法,objectForKey: 和 valueForKey:,这两个方法具体有什么不同呢? 先从 NSDictionary 文档中来看这两个方法的定义: ...