Back to home

localforage超大存储

JavaScript插件· 2023/6/2· 555 views

Table of contents

安装

shell 复制代码
pnpm add -S localforage

方法封装

js 复制代码
localforage.config({
    name: \"mj-opreation-vue\", // 项目名,即数据表名字
});
// 查
localforage.getItem(key);

// 增 | 改
localforage.setItem(key, value);

// 删
localforage.removeItem(key);

Comments

No comments yet — be the first