惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Jina AI
Jina AI
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
I
InfoQ
L
LangChain Blog
The Cloudflare Blog
IT之家
IT之家
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
博客园 - 聂微东
美团技术团队
博客园_首页

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Understanding useRef in React: Concepts, Use Cases, and E...
Vinayagam · 2026-05-20 · via DEV Community

Understanding useRef in React (Beginner Friendly Guide)

React provides several hooks to manage state and behavior in functional components. One of the most commonly misunderstood hooks is useRef. While it looks simple, it solves important problems related to rendering and DOM interaction.

This blog explains useRef with clear concepts, practical examples, and when to use it correctly.


What is useRef?

useRef is a React Hook that returns a mutable object with a .current property.

const ref = useRef(initialValue);

Enter fullscreen mode Exit fullscreen mode

This object persists for the entire lifetime of the component.


Key Characteristics of useRef

  • Stores a value that does not trigger re-render
  • Keeps the same reference across renders
  • Can directly access DOM elements
  • Works like a container that holds mutable data

How useRef Works Internally

When you write:

const myRef = useRef(10);

Enter fullscreen mode Exit fullscreen mode

React internally creates an object like:

{
  current: 10
}

Enter fullscreen mode Exit fullscreen mode

Important points:

  • This object is not recreated on every render
  • Only the .current value changes
  • React does not track changes inside .current

Why useRef is Needed

React components re-render when state or props change. However, not all data changes should trigger a re-render.

There are two main problems useRef solves:

1. Avoid unnecessary re-renders

Using useState for every value can cause performance issues.

2. Direct DOM manipulation

React is declarative, but some cases require imperative control (like focusing an input).


Accessing DOM Elements

import { useEffect, useRef } from "react";

function App() {
  const inputRef = useRef(null);

  useEffect(() => {
    inputRef.current.focus();
  }, []);

  return <input ref={inputRef} />;
}

Enter fullscreen mode Exit fullscreen mode

Explanation:

  • ref attribute connects the DOM element to inputRef
  • inputRef.current gives direct access to the DOM node
  • The focus method is called after render

Persisting Values Without Re-render

import { useRef } from "react";

function App() {
  const countRef = useRef(0);

  const handleClick = () => {
    countRef.current += 1;
    console.log(countRef.current);
  };

  return <button onClick={handleClick}>Click</button>;
}

Enter fullscreen mode Exit fullscreen mode

Here:

  • Value updates
  • Component does not re-render
  • Useful for storing non-UI data

Tracking Previous State

import { useEffect, useRef, useState } from "react";

function App() {
  const [count, setCount] = useState(0);
  const prevCount = useRef();

  useEffect(() => {
    prevCount.current = count;
  }, [count]);

  return (
    <>
      <p>Current: {count}</p>
      <p>Previous: {prevCount.current}</p>
      <button onClick={() => setCount(count + 1)}>Increase</button>
    </>
  );
}

Enter fullscreen mode Exit fullscreen mode

This pattern is useful when comparing previous and current values.


Working with Timers

import { useRef } from "react";

function App() {
  const timerRef = useRef(null);

  const start = () => {
    timerRef.current = setInterval(() => {
      console.log("Running...");
    }, 1000);
  };

  const stop = () => {
    clearInterval(timerRef.current);
  };

  return (
    <>
      <button onClick={start}>Start</button>
      <button onClick={stop}>Stop</button>
    </>
  );
}

Enter fullscreen mode Exit fullscreen mode

useRef helps store the interval ID across renders.


useRef vs useState (Conceptual Difference)

Concept useState useRef
Triggers re-render Yes No
Data visibility Used in UI Not directly used in UI
Mutability Immutable updates required Mutable (.current can change)
Lifecycle behavior Re-initialized logically Persisted across renders

When to Use useRef

Use useRef when:

  • You need direct access to a DOM element
  • You want to store mutable data without re-render
  • You need to persist values between renders
  • You are working with timers, intervals, or external libraries

When Not to Use useRef

Avoid using useRef when:

  • The value should be visible in UI
  • UI must update when value changes
  • State management is required

In these cases, useState is the correct choice.


Common Mistakes

1. Forgetting .current

inputRef.focus(); // incorrect

Enter fullscreen mode Exit fullscreen mode

Correct:

inputRef.current.focus();

Enter fullscreen mode Exit fullscreen mode


2. Using useRef for UI updates

Changing .current will not update the UI.


3. Expecting reactivity

useRef is not reactive like state.


Mental Model

  • useState → reactive data (affects UI)
  • useRef → persistent container (does not affect UI)