首页 > web前端 > js教程 > IndexedDB 解释道。

IndexedDB 解释道。

Patricia Arquette
发布: 2024-10-31 19:16:29
原创
479 人浏览过

在上一篇文章中,我们讨论了 Dexie,IndexedDB 的包装器。在本文中,我们讨论 IndexedDB。您必须熟悉这个 localStorage API,通常用于在浏览器中存储信息。类似地,IndexedDB 用于客户端存储。

什么是 IndexedDB?

MDN文档说明:

IndexedDB 是一个低级 API,用于客户端存储大量结构化数据(包括文件/blob)。此 API 使用索引来实现对此数据的高性能搜索。虽然 Web 存储对于存储少量数据很有用,但对于存储大量结构化数据则不太有用。

IndexedDB explained.

IndexedDB 提供了一个解决方案。这是 MDN IndexedDB 报道的主要登陆页面 - 在这里我们提供完整 API 参考和使用指南、浏览器支持详细信息以及关键概念的一些解释的链接。

示例存储库:

MDN 提供了一个示例 Github 存储库,并有 script/todo.js。

使用 window.onload 初始化脚本

window.onload = () => {
}
登录后复制

打开数据库请求:

// Let us open our database
const DBOpenRequest = window.indexedDB.open('toDoList', 4);
登录后复制

连接错误:

// Register two event handlers to act on the database being opened successfully, or not
DBOpenRequest.onerror = (event) => {
 note.appendChild(createListItem('Error loading database.'));
};
登录后复制

数据库连接成功时:

DBOpenRequest.onsuccess = (event) => {
 note.appendChild(createListItem('Database initialised.'));
// Store the result of opening the database in the db variable. This is used a lot below
 db = DBOpenRequest.result;
// Run the displayData() function to populate the task list with all the to-do list data already in the IndexedDB
 displayData();
};
登录后复制

添加数据

// Open a read/write DB transaction, ready for adding the data
const transaction = db.transaction(['toDoList'], 'readwrite');
// Call an object store that's already been added to the database
const objectStore = transaction.objectStore('toDoList');
// Make a request to add our newItem object to the object store
const objectStoreRequest = objectStore.add(newItem[0]);
objectStoreRequest.onsuccess = (event) => {
 // process data on success.
}
// Report on the success of the transaction completing, when everything is done
transaction.oncomplete = () => {
 note.appendChild(createListItem('Transaction completed: database modification finished.'));
// Update the display of data to show the newly added item, by running displayData() again.
 displayData();
};
// Handler for any unexpected error
transaction.onerror = () => {
 note.appendChild(createListItem(`Transaction not opened due to error: ${transaction.error}`));
};
登录后复制

观察:localStorage 与 IndexedDB

您现在可能已经意识到,仅添加一条记录就需要大量代码,您有异步回调,例如 onerror 和 onsuccess。这个堆栈交换答案中指出了这一点。

为了简化处理此 IndexedDB,可以使用 Dexie。

使用 Dexie 添加数据:

export function AddFriendForm({ defaultAge } = { defaultAge: 21 }) {
 const [name, setName] = useState('');
 const [age, setAge] = useState(defaultAge);
 const [status, setStatus] = useState('');
async function addFriend() {
 try {
 // Add the new friend!
 const id = await db.friends.add({
 name,
 age
 });
setStatus(`Friend ${name} successfully added. Got id ${id}`);
 setName('');
 setAge(defaultAge);
 } catch (error) {
 setStatus(`Failed to add ${name}: ${error}`);
 }
 }
return (
 <>
 <p>{status}</p>
 Name:
 <input
 type="text"
 value={name}
 onChange={(ev) => setName(ev.target.value)}
 />
 Age:
 <input
 type="number"
 value={age}
 onChange={(ev) => setAge(Number(ev.target.value))}
 />
 <button onClick={addFriend}>Add</button>
 </>
 );
}
登录后复制

这个包装 API 让我想起了 Prisma 和 Drizzle 等 ORM。

关于我们:

在 Thinkthroo,我们研究大型开源项目并提供架构指南。我们开发了使用 tailwind 构建的 resubale 组件,您可以在您的项目中使用它们。我们提供 Next.js、React 和 Node 开发服务。

与我们预约会面讨论您的项目。

IndexedDB explained.

IndexedDB explained.

参考资料:

  1. https://www.reddit.com/r/sveltejs/comments/15rj12h/any_downsides_to_using_indexeddb_vs_localstorage/

  2. https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API

  3. https://github.com/mdn/dom-examples/tree/main/to-do-notifications

  4. https://softwareengineering.stackexchange.com/questions/219953/how-is-localstorage- Different-from-indexeddb

以上是IndexedDB 解释道。的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板