gpt4 book ai didi

javascript - typescript 错误: Property 'scrollIntoView' does not exist on type 'never' . TS2339

转载 作者:行者123 更新时间:2023-12-01 00:50:29 40 4
gpt4 key购买 nike

在我的组件中,我有以下代码可以滚动到页面底部:

const el = useRef(null);

useEffect(() => {
if (el.current === null) { }
else
el!.current!.scrollIntoView({ block: 'end', behavior: 'smooth' });

if (props.loading != true)
props.fetchFeedbackTaskPageData(submissionId);

}, [])

el 引用附加到 div(位于页面底部),如下所示:

<div id={'el'} ref={el}></div>

但是,我收到以下错误:

Property 'scrollIntoView' does not exist on type 'never'. TS2339

当我没有使用 ! 时,我收到此错误:

Object is possibly 'null'. TS2531

我检查了很多关于这个问题的帖子,但没有看到在使用 useRefscrollIntoView 时如何在 React 中处理这个问题。有什么想法吗?

最佳答案

对于 2020 年读到这篇文章的人来说

const el = useRef<null | HTMLDivElement>(null); 

不再:

const el = useRef<null | HTMLElement>(null);

关于javascript - typescript 错误: Property 'scrollIntoView' does not exist on type 'never' . TS2339,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57028500/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com