qsd23
Results
2
comments of
qsd23
这个问题解决了吗?若已解决,方便说一下解决方案吗
通过动态给定id暂时解决了这个问题, 不知道后续会不会有bug @angry-bread src/app.js `function Test(props) { useEffect(() => { let rootDom = document.getElementById('id-name'); rootDom.id = new Date() * 1; rootDom.className = 'rootDom'; }, []); return props.children; } export function...