admin管理员组文章数量:1349174
I have some content that I dynamically inject onto the DOM using dangerously set inner HTML. When I reference it using a Ref, and query it, the NodeList is always empty, but when I look at the just sidebarContent.current
, the NodeList is not empty.
Why does this happen?
const PostSideBar = ({ sidebarContent }) => {
const [childNodes, setChildNodes] = useState([]);
useEffect(() => {
if (sidebarContent.current) {
const h2Elements = sidebarContent.current.querySelectorAll('h2');
setChildNodes(h2Elements);
console.log(h2Elements); // Check the h2 elements
}
}, [sidebarContent]);
return <div>PostSideBar</div>;
};
export default PostSideBar;
The Ref is created in parent component called PostContent, which passes the ref as a prop to reference a component where I inject the html
const PostContentBody = ({ content, ref }) => {
const [postcontent, setPostContent] = useState<string | null>(null);
useEffect(() => {
const fetchMarkdown = async () => {
const markdowncontent = await parseMarkdown(content);
setPostContent(markdowncontent.value);
};
fetchMarkdown();
}, [content]);
return (
<div
dangerouslySetInnerHTML={{ __html: postcontent }}
ref={ref}
/>
);
};
export default PostContentBody;
I have some content that I dynamically inject onto the DOM using dangerously set inner HTML. When I reference it using a Ref, and query it, the NodeList is always empty, but when I look at the just sidebarContent.current
, the NodeList is not empty.
Why does this happen?
const PostSideBar = ({ sidebarContent }) => {
const [childNodes, setChildNodes] = useState([]);
useEffect(() => {
if (sidebarContent.current) {
const h2Elements = sidebarContent.current.querySelectorAll('h2');
setChildNodes(h2Elements);
console.log(h2Elements); // Check the h2 elements
}
}, [sidebarContent]);
return <div>PostSideBar</div>;
};
export default PostSideBar;
The Ref is created in parent component called PostContent, which passes the ref as a prop to reference a component where I inject the html
const PostContentBody = ({ content, ref }) => {
const [postcontent, setPostContent] = useState<string | null>(null);
useEffect(() => {
const fetchMarkdown = async () => {
const markdowncontent = await parseMarkdown(content);
setPostContent(markdowncontent.value);
};
fetchMarkdown();
}, [content]);
return (
<div
dangerouslySetInnerHTML={{ __html: postcontent }}
ref={ref}
/>
);
};
export default PostContentBody;
Share
Improve this question
edited 2 days ago
Gammacase
asked Apr 2 at 4:47
GammacaseGammacase
92 bronze badges
New contributor
Gammacase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
- 2 This needs details. When and where are the ref's child nodes added? Edit your question to contain a minimal reproducible example – Phil Commented Apr 2 at 6:06
2 Answers
Reset to default -1I will await for more details, but I guess when you console.log(sidebarContent.current), you're simply logging the element itself, which is available immediately after React's render.
The problem arises when you try to query the children of that element, as those children might not be fully rendered yet.
Assuming everything is correct, you can try adding a delay in your useEffect to verify.
I will edit this answer once I get more context.
Please provide more details.
I think the sidebarContent
is a ref from useRef
. The ref shouldn't be used as deps of useEffect
. I will always be the same reference and the react won't rerender. Please try to use useState
本文标签:
版权声明:本文标题:javascript - Query Selector Ref in React returns empty NodeList when trying to access children element - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743859788a2551522.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论