0Pricing
Indie Hacker Mobile Apps · Урок

Локальное хранение данных

Узнайте о различных способах локального хранения данных на мобильных устройствах и управления ими, включая SQLite, AsyncStorage и общие настройки.

«Локальное хранение данных» — бесплатный урок Indie Hacker Mobile Apps на CoddyKit. Это урок 2 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Indie Hacker Mobile Apps, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Indie Hacker Mobile Apps содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Why Store Data Locally?

When building mobile apps, some data needs to be available even when there's no internet connection. This is where local data persistence comes in!

It means storing information directly on the user's device, rather than always fetching it from a server.

Benefits of Local Storage

Storing data locally offers several advantages for your app:

  • Offline Access: Users can still use core features without internet.
  • Faster Performance: Retrieving data from the device is quicker than from a remote server.
  • Improved UX: A smoother, more responsive experience for your users.
  • Personalization: Saving user preferences and settings.

Simple Key-Value Pairs

One of the easiest ways to store small amounts of data is using key-value pairs. Think of it like a dictionary or a map where each piece of data has a unique name (the 'key') and its corresponding value.

This is perfect for user settings, feature flags, or simple flags like 'has seen onboarding'.

Shared Preferences (Android/iOS)

On native platforms, Android uses Shared Preferences and iOS uses UserDefaults for key-value storage. They work similarly:

  • Store simple data types (strings, numbers, booleans).
  • Are often synchronous.
  • Best for small amounts of non-sensitive data.

For cross-platform frameworks, you'll use an abstraction layer.

AsyncStorage: Cross-Platform K-V

For apps built with frameworks like React Native, AsyncStorage is a popular module for local key-value storage. It's an asynchronous, unencrypted, persistent key-value storage system.

Because it's asynchronous, your app won't freeze while data is being read or written.

Saving Data with AsyncStorage

Here's how you might conceptually save a user's theme preference using AsyncStorage. In a real app, AsyncStorage would be imported from a library.

// (Imagine AsyncStorage is globally available)

async function main() {
  console.log("Attempting to save user theme...");
  try {
    // In a real app, this would save to device storage.
    // await AsyncStorage.setItem('userTheme', 'dark');
    console.log("User theme 'dark' conceptually saved.");
  } catch (error) {
    console.log("Error saving data:", error.message);
  }
}

main();

Reading Data with AsyncStorage

To retrieve the saved data, you use the getItem method. It also returns a Promise, so you'll typically use await or .then().

// (Imagine AsyncStorage is globally available)

async function main() {
  console.log("Attempting to read user theme...");
  try {
    // In a real app, this would read from device storage.
    // const theme = await AsyncStorage.getItem('userTheme');
    const theme = "dark"; // Simulate a retrieved value
    console.log("Retrieved user theme:", theme);
  } catch (error) {
    console.log("Error reading data:", error.message);
  }
}

main();

SQLite: Relational Database

For more complex data, like lists of items, user profiles with multiple fields, or anything requiring structured queries, SQLite is a powerful option.

It's a lightweight, embedded relational database that runs directly on the device. Think of it as a mini-serverless database.

When to Use SQLite

SQLite is ideal when you need:

  • Structured Data: Tables, columns, and relationships.
  • Complex Queries: Filtering, sorting, joining data.
  • Large Datasets: More efficient than key-value for many items.
  • Offline Sync: Storing data that will eventually sync with a backend.

However, it adds more complexity to your app's architecture.

Quick Check: Data Storage

Which local data storage method is generally best suited for storing a user's preference for 'dark mode' in a cross-platform mobile app?

Recap: Local Data Persistence

You've learned about essential local data persistence techniques for mobile apps!

  • Key-Value Stores: Simple for small data (Shared Preferences/UserDefaults, AsyncStorage).
  • AsyncStorage: Cross-platform (React Native) key-value, asynchronous.
  • SQLite: Embedded relational database for structured, complex data.

Choosing the right method depends on your data's complexity and your app's specific needs. Next, we'll explore integrating with remote APIs!

Часто задаваемые вопросы

Урок «Локальное хранение данных» бесплатный?

Да — полный текст урока «Локальное хранение данных» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Indie Hacker Mobile Apps, подпишись на CoddyKit PRO. Курс Indie Hacker Mobile Apps содержит 4 уроков всего.

Чему я научусь в уроке «Локальное хранение данных»?

Узнайте о различных способах локального хранения данных на мобильных устройствах и управления ими, включая SQLite, AsyncStorage и общие настройки. Ты практикуешь Indie Hacker Mobile Apps с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать Indie Hacker Mobile Apps?

Предыдущий опыт не требуется. Indie Hacker Mobile Apps на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 2 из 4.

Сколько времени занимает урок «Локальное хранение данных»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке Indie Hacker Mobile Apps?

Да. Каждый урок Indie Hacker Mobile Apps включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Управление состоянием мобильного приложения
  2. Локальное хранение данных
  3. Интеграция RESTful API
  4. Архитектура навигации и маршрутизации
← Назад к Indie Hacker Mobile Apps