您好,登錄后才能下訂單哦!
這篇文章主要介紹了React報錯之Object is possibly null的問題如何解決的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇React報錯之Object is possibly null的問題如何解決文章都會有所收獲,下面我們一起來看看吧。
使用類型守衛來解決React中useRef
鉤子“Object is possibly null”的錯誤。比如說,if (inputRef.current) {}
。一旦null
被排除在ref
的類型之外,我們就能夠訪問ref
上的屬性。
下面是一個錯誤如何發生的示例。
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> ); }
代碼片段中的問題是,TypeScript不能確保我們將一個元素或者一個值賦值給ref,所以它的current
屬性可能為null
。
為了解決這個錯誤,在訪問ref類型上的屬性之前,我們必須使用類型守衛來從其類型中排除null
。
import {useEffect, useRef} from 'react'; export default function App() { const inputRef = useRef<HTMLInputElement>(null); useEffect(() => { // ????? ref could be null here if (inputRef.current != null) { // ????? TypeScript knows that ref is not null here inputRef.current.focus(); } }, []); return ( <div> <input ref={inputRef} type="text" id="message" /> <button>Click</button> </div> ); }
我們使用簡單的if
語句作為類型守衛,來確保ref
上的current
屬性不存儲null
。當程序進入到if
代碼塊中,TypeScript就會知道ref
對象上的current
屬性就不會存儲null
。
確保在useRef鉤子上使用泛型,正確的類型聲明ref
上的current
屬性。
注意,我們傳遞了一個泛型來將ref
的值類型聲明為HTMLInputElement
。
一些常用的類型有:HTMLInputElement
,HTMLButtonElement
,HTMLAnchorElement
,HTMLImageElement
,HTMLTextAreaElement
,HTMLSelectElement
等等。
如果你在ref
中存儲了不同的值,請確保將特定類型傳遞給useRef
鉤子的泛型,例如const ref = useRef<{name: string}>(null);
。
如果ref
上的current
屬性存儲了null
,我們也可以使用可選鏈?.
操作符進行短路運算。
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> ); }
如果引用是空值(null
或者undefined
),可選鏈?.操作符會進行短路運算,而不會拋出錯誤。換句話說,如果ref
上的current
屬性存儲了null
,操作符會短路運算從而返回undefined
。而不會在undefined
上嘗試調用focus
方法,導致一個運行時錯誤。
另一種解決方案是使用非空斷言!
操作符。
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> ); }
在TypeScript中,感嘆號標記被稱為非空斷言操作符。被用來從類型中移除null
和undefined
,而不用進行任何顯式的類型檢查。
當我們使用非空斷言時,基本上我們就是在告訴TS,ref
對象上的current
屬性不會存儲null
或者undefined
。
請注意,這種方法不是類型安全的,因為TypeScript不執行任何檢查以確保屬性不是空的。
關于“React報錯之Object is possibly null的問題如何解決”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“React報錯之Object is possibly null的問題如何解決”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。