码迷,mamicode.com
首页 > 数据库 > 详细

IndexedDB基本使用——笔记

时间:2016-10-20 21:57:44      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:

好记性不如烂笔头。indexedDB的API记录下来,备用。代码来源传智播客,在此感谢。

indexedDB是HTML5-WebStorage的重要一环,是一种轻量级NOSQL数据库。相比web sql(sqlite)更加高效,包括索引、事务处理和健壮的查询功能。

技术分享
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body></body>
<script type="text/javascript">
  // 获取indexdb对象,为了兼容性的写法
  // 1、获取对象
  window.indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB;
  window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction || window.msIDBTransaction;
  window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || window.msIDBKeyRange;
  window.IDBCursor = window.IDBCursor || window.webkitIDBCursor || window.msIDBCursor;

  //2.定义数据库的基本信息
  var dbInfo = {
    dbName: testdb,
    dbVersion: 1001,
    dbInstance: {}
  };

  //3.创建数据库
  var dbContent = window.indexedDB.open(dbInfo.dbName, dbInfo.dbVersion);

  //数据库版本更新
  dbContent.onupgradeneeded = function(e){
    console.log(数据库版本号修改了);
    //4.创建数据库表(store)
    var _db = e.target.result;  //获取数据库
    var storeNames = _db.objectStoreNames;  //获取所有表

    if(!storeNames.contains(cart)){
      // 创建表,参数:表名,表结构
      _db.createObjectStore(cart, {
        keyPath: goodsId,   //索引
        autoIncrement: true
      })
    }
  }

  //数据库连接成功
  dbContent.onsuccess = function(e) {
    console.log(数据库连接成功)
    //5.增删查改操作写在这里
    var _db = e.target.result;
    var trans = _db.transaction([cart], readwrite);
    var store = trans.objectStore(cart);

    //基于请求的,注意一次只能做一个操作
    //添加数据
//    var req = store.add({
//      goodsId: ‘102‘,
//      price: 999.99,
//      name: ‘衬衫‘,
//      size: ‘M‘
//    });

    //修改数据
//    var req = store.put({
//      goodsId: ‘102‘,
//      price: 666,
//      name: ‘衣服‘,
//      size: ‘XXL‘
//    });

      //删除数据
    //var req = store.delete(‘100‘);

    //删除所有数据
    //var req = store.clear();

//    req.onsuccess = function(e){
//      console.log(e);
//      console.log(‘操作数据成功‘);
//    }
//
//    req.onerror = function(e){
//      console.log(‘操作数据失败‘ + e);
//    }

    // 查询所有数据
//    var cursor = store.openCursor();
//    var data = [];
//    cursor.onsuccess = function(e){
//      console.log(e)
//      var result = e.target.result;
//      if(result && result !== null){
//        data.push(result.value);
//      }
//      console.log(data)
//    }
//    cursor.onerror = function(e){
//      console.log(e);
//    }

  }

  //数据库连接失败
  dbContent.onerror = function(e){
    alert(连接数据库失败);
  }
</script>
</html>
View Code

 

IndexedDB基本使用——笔记

标签:

原文地址:http://www.cnblogs.com/weir-LV/p/5982238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!