React userRef error Object is possibly null fix
Use type guards to resolve “Object is possibly null” errors with the useRef hook in React, for example if(inputRef.current){}
. Once null is excluded from the type of ref, we can access properties on the ref that correspond to its type.
Below is sample code that causes this error to occur.
import {useEffect, useRef} from 'react';
export default function App() {
const inputRef = useRef<HTMLInputElement>(null);
useEffect(() => {
// ⛔️ Object is possibly 'null'.ts(2531)
inputRef.current.focus();
}, []);
return (
<div>
<input ref={inputRef} type="text" id="message" />
<button>Click</button>
</div>
);
}
The problem in the code snippet is that TypeScript doesn't guarantee that we'll assign the ref to an element or assign it a value, so its current property may be null.
To fix this error, we must use type guards to exclude null from ref's type before accessing its properties.
import {useEffect, useRef} from 'react';
export default function App() {
const inputRef = useRef<HTMLInputElement>(null);
useEffect(() => {
// 这里 ref 可以是 null
if (inputRef.current != null) {
// TypeScript 知道这里的 ref 不为 null
inputRef.current.focus();
}
}, []);
return (
<div>
<input ref={inputRef} type="text" id="message" />
<button>Click</button>
</div>
);
}
We use a simple if statement as a type guard to ensure that the current property on the ref does not store a null value.
TypeScript knows that once we enter the if block, the current property of the ref object will not store a null value.
Make sure to use generics on the useRef hook to correctly type the current property of the ref
Notice that we pass a generic to the value of ref to the HTMLInputElement.
The types of DOM elements are uniformly named HTML***Element. Once you start typing HTML.., your IDE should be able to help you autocomplete.
Some commonly used types are: HTMLInputElement
, HTMLButtonElement
, HTMLAnchorElement
, HTMLImageElement
, HTMLTextAreaElement
, HTMLDivElement
etc.
If you store different values in the ref, make sure to pass the specific type to the useRef hook's generics, ·const ref = useRef<{name: string}>(null);
e.g.
(?.)
We can also use the optional chaining operator to block if the current property on the ref stores a null value .
import {useEffect, useRef} from 'react';
export default function App() {
const inputRef = useRef<HTMLInputElement>(null);
useEffect(() => {
// 👇️ optional chaining (?.)
inputRef.current?.focus();
}, []);
return (
<div>
<input ref={inputRef} type="text" id="message" />
{/* Cannot find name 'button'.ts(2304) */}
<button>Click</button>
</div>
);
}
If ref is empty (null or undefined), the optional chaining (?.)
operator will block rather than raise an error.
In other words, if the current property on ref stores a null value, the operator will short-circuit and return undefined, rather than attempting to call the focus() method on the undefined value and causing a runtime error.
Another solution to the “object might be null” error with refs in React is to use the not null (!) assertion operator.
import {useEffect, useRef} from 'react';
export default function App() {
const inputRef = useRef<HTMLInputElement>(null);
useEffect(() => {
// 👇️ using non-null (!) assertion
inputRef.current!.focus();
}, []);
return (
<div>
<input ref={inputRef} type="text" id="message" />
{/* Cannot find name 'button'.ts(2304) */}
<button>Click</button>
</div>
);
}
The exclamation mark is called the non-null assertion operator in TypeScript. It is used to remove null and undefined from a type without doing any explicit type checking.
When we use this, we basically tell TypeScript that the current property on the ref object does not store a value of null or undefined.
Note that this approach is not type-safe, as TypeScript does not perform any checks to ensure that the property is not null.
The “Object is possibly null” error is caused because the useRef() hook can be passed an initial value as a parameter, and we passed it null as the initial value.
The hook returns a mutable ref object whose .current
attributes are initialized to the passed arguments.
When we pass a ref prop to an element, for example <input ref={myRef} />
, React .current
sets the properties of the ref object to the corresponding DOM node, but TypeScript can't determine whether we mean to set the ref to the DOM element or to set its value later in our code.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Fix Uncaught ReferenceError: useState is not defined in React
Publish Date:2025/03/15 Views:142 Category:React
-
When we use the useState hook in our code but forget to import it, it generates the error Uncaught ReferenceError: useState is not defined. To fix this error, you need to import the hook before using it import {useState} from react . // ?️
React error Uncaught ReferenceError: process is not defined solution
Publish Date:2025/03/15 Views:116 Category:React
-
要解决 React 中的“Uncaught ReferenceError: process is not defined” 错误,需要在项目的根目录中打开终端并通过运行 `npm install react-scripts@latest` 更新 `react-scripts` 包的版本,并在必要时重新安装
How to solve the "Function components cannot have string refs" error in React
Publish Date:2025/03/15 Views:138 Category:React
-
当我们在函数组件中使用字符串作为引用时,会出现错误“Function components cannot have string refs”。 要解决该错误,需要使用 useRef() 钩子来获取一个可变的 ref 对象,我们可以将其用作组件
React Error Property 'X' does not exist on type 'Readonly<{}>'
Publish Date:2025/03/15 Views:139 Category:React
-
当我们尝试访问未键入的类组件的 props 或状态时,会发生 React.js 错误“Property does not exist on type 'Readonly '”。 要解决该错误,需要使用 React.Component 类上的泛型来输入该类的道具或状
Solve React's Unexpected default export of anonymous function error
Publish Date:2025/03/15 Views:119 Category:React
-
当我们尝试使用默认导出导出匿名函数时,会导致“Unexpected default export of anonymous function”警告。 要解决此错误,需要在导出函数之前为其命名。
React error Type '() => JSX.Element[]' is not assignable to type FunctionCompo
Publish Date:2025/03/15 Views:51 Category:React
-
当我们尝试从函数组件返回元素数组时,会发生 React.js 错误“Type '() => JSX.Element[]' is not assignable to type FunctionComponent”。 要解决该错误,需要将元素数组包装到 React 片段中。
How to solve React Type {children: Element} has no properties in common with type
Publish Date:2025/03/15 Views:103 Category:React
-
React.js 错误“Type {children: Element} has no properties in common with type IntrinsicAttributes” 当我们尝试将 children 道具传递给不带任何道具的组件时发生。 要解决错误,需要定义并键入组件上的属性
Fix the value prop on input should not be null error in React
Publish Date:2025/03/15 Views:141 Category:React
-
当我们将输入的初始值设置为 null 或覆盖将其设置为 null 的初始值时,会导致警告“value prop on input should not be null”,例如 来自空的 API 响应。 使用后备值来解决这个问题。
Property does not exist on type 'JSX.IntrinsicElements' error in React
Publish Date:2025/03/15 Views:188 Category:React
-
当组件的名称以小写字母开头时,会出现错误“Property does not exist on type 'JSX.IntrinsicElements”。 要解决该错误,需要确保始终以大写字母开头组件名称,安装 React 类型并重新启动我们的开