码迷,mamicode.com
首页 > 其他好文 > 详细

localForage:离线存储的改进版本

时间:2020-03-29 01:04:48      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:item   核心   数组   ref   data-   api   tab   提前   exec   

前言

最近在看IDB,IDB是一种对象数据库存储方式,查询数据有游标法、事务法、索引法,使用的API很多,比较难记。

localForage是一个改善web-app离线数据存储的JavaScript库,核心在于使用一个和localStorage类似的API,比较简单好记。而且存储的数据类型不只是字符串,可以是数值、对象、布尔值、数组,但是undefined除外。默认情况下,依次优先采用使用IDB、WebSQL、localStorage进行后台存储。
使用localForage只需要在页面包含js文档即可,下载链接:
https://github.com/localForag...
该项目的具体GITHUB地址

API

1)setItem(key, value, successCallback):创建一个键,参数是键名、键值、回调函数,回调函数的参数是对应的键值。

// Unlike localStorage, you can store non-strings.
localforage.setItem(‘my array‘, [1, 2, ‘three‘]).then(function(value) {
    // This will output `1`.
    console.log(value[0]);
}).catch(function(err) {
    // This code runs if there were any errors
    console.log(err);
});

2)getItem(key, successCallback):获取数据并使用回调函数

localforage.getItem(‘somekey‘, function(err, value) {
    // Run this code once the value has been
    // loaded from the offline store.
    console.log(value);
});

3)removeItem(key, successCallback):移除对应的键

localforage.removeItem(‘somekey‘).then(function() {
    // Run this code once the key has been removed.
    console.log(‘Key is cleared!‘);
}).catch(function(err) {
    // This code runs if there were any errors
    console.log(err);
});

4)clear(successCallback):清除所有键。

localforage.clear().then(function() {
    // Run this code once the database has been entirely deleted.
    console.log(‘Database is now empty.‘);
}).catch(function(err) {
    // This code runs if there were any errors
    console.log(err);
});

5)length(successCallback):获得离线存储的总的键数。

localforage.length().then(function(numberOfKeys) {
    // Outputs the length of the database.
    console.log(numberOfKeys);
}).catch(function(err) {
    // This code runs if there were any errors
    console.log(err);
});

6)key(keyIndex, successCallback):根据键索引得到键值。
7)keys(successCallback):得到所有的键索引。
8)iterate(iteratorCallback, successCallback):对数据库中的每一个键值对调用回调函数,回调函数的参数分别是键值、键索引、迭代次数(基于1)。

// The same code, but using ES6 Promises.
localforage.iterate(function(value, key, iterationNumber) {
    // Resulting key/value pair -- this callback
    // will be executed for every item in the
    // database.
    console.log([key, value]);
}).then(function() {
    console.log(‘Iteration has completed‘);
}).catch(function(err) {
    // This code runs if there were any errors
    console.log(err);
});

或许并不一定要迭代所有的键值对,此时只要返回一个非undefined类型值,就可以提前结束迭代,这个返回值会作为successCallback的参数。这个方法有点问题,返回的值不太对:

<!DOCTYPE html>
<html>
  <head>
    <title>Listing 2.1</title>
    <script type="text/javascript" src="https://raw.githubusercontent.com/mozilla/localForage/master/dist/localforage.min.js">       </script>

    <script type="text/javascript">
      localforage.setItem(‘array‘, [1, 2,‘three‘]);
      localforage.setItem(‘string‘, ‘people‘);
      localforage.setItem(‘number1‘, 5);
      localforage.setItem(‘number2‘, 6);
      localforage.iterate(function(value, key, iterationNumber) {
         if (iterationNumber < 2) {
                console.log([key, value]);
            } else {
                return [key, value];
            }
      }).then(function(result) {
          console.log(‘Iteration has completed at ‘+ result);
      }).catch(function(err) {
          console.log(err);
      });
    </script>
  </head>
  <body>
  </body>
</html>

前面提到,localForage在默认情况下会优先采用使用IDB、WebSQL、localStorage进行后台存储,但是可以通过setDriver()进行后台设置,如果设置的机制在当前浏览器并不支持,则还是按照默认选择。
setDriver(driverName)/setDriver([driverName, nextDriverName]):设置后台支持机制,参数是localforage.INDEXEDDB、localforage.WEBSQL、localforage.LOCALSTORAGE。

localForage:离线存储的改进版本

标签:item   核心   数组   ref   data-   api   tab   提前   exec   

原文地址:https://www.cnblogs.com/baimeishaoxia/p/12590300.html

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