Skip to content

uni-helper/localForage-adapter

Repository files navigation

@uni-helper/localforage-adapter

NPM version

此项目所有主要功能和目标均已完成,但是由于未经过严格测试,所以暂时不建议在生产环境中使用。

安装

# pnpm
pnpm install @uni-helper/localforage-adapter
# npm
npm install @uni-helper/localforage-adapter --save
# yarn
yarn add @uni-helper/localforage-adapter

使用

import { uniStorageDriver, sqliteDriver } from "@uni-helper/localforage-adapter"
import localforage from "localforage"

localforage.defineDriver(uniStorageDriver); // 全端支持,但是还是建议在H5端使用lf自带的IndexedDB
localforage.defineDriver(sqliteDriver); // 仅支持APP端,并需要基座包支持SQLite模块
// 可以使用 #ifdef 等UniAPP特有条件编译注释符
localforage.setDriver([ //会按顺序依次尝试,直到找到可用的驱动
  sqliteDriver._driver // 或者"sqliteDriver"
  uniStorageDriver._driver // 或者"uniStorageDriver"
]);

License

MIT License © 2023-PRESENT Uni-Helper