typescript Object is possibly 'null' -- react useEffect() Ошибка
Primary tabs
Не работает даже для:
React.useEffect(() => { if (inputRef !== null) { inputRef.current.selectionStart = position; inputRef.current.selectionEnd = position; } }, [position])
--связано с тем, как мы объявляем ссылку, быстрым решением может быть:
const inputRef: any = React.useRef<HTMLInputElement>(null);
- Log in to post comments
- 1270 reads