Home Web Front-end JS Tutorial A Beginner&#s Guide to IndexedDB

A Beginner&#s Guide to IndexedDB

Sep 26, 2024 am 08:21 AM

A Beginner

A Tutorial on Using Client-Side Storage in Web Apps

When building modern web applications, especially progressive web apps (PWAs), it's crucial to have a way to store data offline. IndexedDB is a powerful client-side database that allows web apps to store and retrieve data, even when the user is offline. This guide will walk you through the basics of IndexedDB, showing you how to create, read, update, and delete data (CRUD operations) within your web app.

What is IndexedDB?

IndexedDB is a low-level API for client-side storage of large amounts of structured data, including files and blobs. Unlike localStorage, IndexedDB allows you to store complex data types, not just strings. It uses an asynchronous, transactional database model, which makes it powerful for applications needing to handle large datasets or offline data syncing.

Why Use IndexedDB?

  • Offline capabilities: Ideal for Progressive Web Apps (PWAs) and offline-first applications.
  • Storage capacity: IndexedDB can store far more data compared to localStorage (which is limited to about 5-10MB).
  • Flexibility: Store complex objects like arrays, objects, and even blobs.
  • Asynchronous: Operations do not block the UI thread, meaning your app remains responsive.

Getting Started: Setting Up IndexedDB

Let's dive into the core steps for working with IndexedDB. We will cover:

  • Creating or opening a database
  • Creating object stores (tables)
  • Adding data
  • Reading data
  • Updating data
  • Deleting data

Step 1: Opening a Database

To interact with IndexedDB, you first need to open a connection to the database. If the database doesn't exist, it will be created.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

const request = indexedDB.open('MyCustomersDatabase', 1);

 

request.onerror = (event) => {

    console.error('Database error:', event.target.errorCode);

};

 

request.onsuccess = (event) => {

    const db = event.target.result;

    console.log('Database opened successfully', db);

};

 

request.onupgradeneeded = (event) => {

    const db = event.target.result;

    if (!db.objectStoreNames.contains('customers')) {

        const objectStore = db.createObjectStore('customers', { keyPath: 'id' });

        objectStore.createIndex('name', 'name', { unique: false });

        objectStore.createIndex('email', 'email', { unique: true });

        console.log('Object store created.');

    }

};

Copy after login

Here’s what’s happening:

  • indexedDB.open opens or creates the database.
  • onerror handles any errors when opening the database.
  • onsuccess is triggered when the database connection is successfully opened.
  • onupgradeneeded is fired when the database needs to be upgraded (e.g., if this is the first time opening the database or if the version changes). It’s where you define your object stores (think of them as tables in SQL).

Step 2: Adding Data to IndexedDB

Now that we have our database and object store set up, let’s add some data to it.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

const addCustomer = (db, customer) => {

    const transaction = db.transaction(['customers'], 'readwrite');

    const objectStore = transaction.objectStore('customers');

    const request = objectStore.add(customer);

 

    request.onsuccess = () => {

        console.log('Customer added:', customer);

    };

 

    request.onerror = (event) => {

        console.error('Error adding customer:', event.target.errorCode);

    };

}

 

const customer = { id: 1, name: 'John Doe', email: 'john@example.com' };

 

request.onsuccess = (event) => {

    const db = event.target.result;

    addCustomer(db, customer);

};

Copy after login

Here’s what’s happening:

  • We create a transaction with 'readwrite' access to allow modifications.
  • The add() method is used to insert data into the object store.
  • We listen for success and error events to confirm whether the data was added successfully.

Step 3: Reading Data from IndexedDB

Reading data from IndexedDB is also straightforward. Let’s retrieve the customer we just added by using the get() method.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

const getCustomer = (db, id) => {

    const transaction = db.transaction(['customers'], 'readonly');

    const objectStore = transaction.objectStore('customers');

    const request = objectStore.get(id);

 

    request.onsuccess = (event) => {

        const customer = event.target.result;

        if (customer) {

            console.log('Customer found:', customer);

        } else {

            console.log('Customer not found.');

        }

    };

 

    request.onerror = (event) => {

        console.error('Error fetching customer:', event.target.errorCode);

    };

}

 

request.onsuccess = (event) => {

    const db = event.target.result;

    getCustomer(db, 1); // Fetch customer with ID 1

};

Copy after login

Step 4: Updating Data in IndexedDB

To update an existing record, we can use the put() method, which works similarly to add() but replaces the record if the key already exists.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

const updateCustomer = (db, customer) => {

    const transaction = db.transaction(['customers'], 'readwrite');

    const objectStore = transaction.objectStore('customers');

    const request = objectStore.put(customer);

 

    request.onsuccess = () => {

        console.log('Customer updated:', customer);

    };

 

    request.onerror = (event) => {

        console.error('Error updating customer:', event.target.errorCode);

    };

}

 

const updatedCustomer = { id: 1, name: 'Jane Doe', email: 'jane@example.com' };

 

request.onsuccess = (event) => {

    const db = event.target.result;

    updateCustomer(db, updatedCustomer);

};

Copy after login

Step 5: Deleting Data from IndexedDB

Finally, to delete a record, use the delete() method.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

const deleteCustomer = (db, id) => {

    const transaction = db.transaction(['customers'], 'readwrite');

    const objectStore = transaction.objectStore('customers');

    const request = objectStore.delete(id);

 

    request.onsuccess = () => {

        console.log('Customer deleted.');

    };

 

    request.onerror = (event) => {

        console.error('Error deleting customer:', event.target.errorCode);

    };

}

 

request.onsuccess = (event) => {

    const db = event.target.result;

    deleteCustomer(db, 1); // Delete customer with ID 1

};

Copy after login

Conclusion

IndexedDB is a robust solution for handling client-side data storage, especially in offline-first web apps. By following this guide, you’ve learned how to:

  • Open and create a database
  • Create object stores
  • Add, read, update, and delete data

With IndexedDB, you can build more resilient web applications that store data locally and work even without an internet connection.

References:

  1. MDN Web Docs - IndexedDB API

    A comprehensive guide on how IndexedDB works, its API methods, and use cases.

    MDN IndexedDB Guide

  2. Google Developers - IndexedDB

    A detailed article covering best practices and use of IndexedDB for building offline-capable web apps.

    Google Developers - IndexedDB

  3. W3C Indexed Database API

    The official specification from W3C outlining the technical implementation and structure of IndexedDB.

    W3C IndexedDB Spec

These resources will provide additional depth and context if you're looking to explore more about IndexedDB beyond this tutorial!

Happy coding!

The above is the detailed content of A Beginner&#s Guide to IndexedDB. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What should I do if I encounter garbled code printing for front-end thermal paper receipts? What should I do if I encounter garbled code printing for front-end thermal paper receipts? Apr 04, 2025 pm 02:42 PM

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

Demystifying JavaScript: What It Does and Why It Matters Demystifying JavaScript: What It Does and Why It Matters Apr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Who gets paid more Python or JavaScript? Who gets paid more Python or JavaScript? Apr 04, 2025 am 12:09 AM

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Is JavaScript hard to learn? Is JavaScript hard to learn? Apr 03, 2025 am 12:20 AM

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

How to achieve parallax scrolling and element animation effects, like Shiseido's official website?
or:
How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? How to achieve parallax scrolling and element animation effects, like Shiseido's official website? or: How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? Apr 04, 2025 pm 05:36 PM

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

How to merge array elements with the same ID into one object using JavaScript? How to merge array elements with the same ID into one object using JavaScript? Apr 04, 2025 pm 05:09 PM

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

The Evolution of JavaScript: Current Trends and Future Prospects The Evolution of JavaScript: Current Trends and Future Prospects Apr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

The difference in console.log output result: Why are the two calls different? The difference in console.log output result: Why are the two calls different? Apr 04, 2025 pm 05:12 PM

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

See all articles