删除仍在运行的js代码
P粉864872812
P粉864872812 2024-02-17 18:08:32
0
2
469

即使元素从页面中删除,js 代码也会继续运行。

使用 react-js 编码时的第一个困难。因为页面没有重新加载,所以初始脚本仍在运行,如 setInterval、websocket、etc 代码。下面的简单示例元素已被删除但仍在运行。如果我必须使用全局变量创建,则无效

<button onclick="createNewJsCode()">create new js</button>
<button onclick="removeJsCode()">remove js</button>
<script>
  let id = ''
  function createNewJsCode(){
    let s = document.createElement('script')
    let code = 'setInterval(`console.log(new Date())`,500)'
    s.id = (id = crypto.randomUUID())
    s.appendChild(document.createTextNode(code));
    document.body.appendChild(s);
  }
  function removeJsCode(){
    document.getElementById(id).remove()
  }
</script>

P粉864872812
P粉864872812

全部回复(2)
P粉344355715

你不能仅仅删除 <script> 节点,你必须做一些更具体的清理。

setInterval 返回一个间隔 ID,您可以将其传递给 clearInterval 以停止它。

一般来说,我想说你的代码在 React 上下文中没有多大意义,但在你的情况下,你可以这样做:



sssccc
P粉083785014

这是一个 React 问题,下面是在 React 组件中使用 setInterval 的示例。如果您使用某种形式的 React Router,下面的代码也将正确卸载/安装等。

const {useState, useEffect} = React;

function Page() {
  const [counter, setCounter] = useState(0);
  useEffect(() => {
    const i = setInterval(() => {
       console.log(new Date());
       setCounter(c => c +1);
    }, 1000);
    return () => {
      console.log('umount');
      clearInterval(i);
    }
  }, []);
  return 
This is a page, and when unmounted will end the setInterval.
Counter: {counter}, time: {new Date().toLocaleString()}
Check console you will also see console logging of datetime finishes.
} function OtherInfo() { return
Notice how the timer stopped inside the console.
If you click Show Page the component will be mounted again, this is kind of the basis of how React Router works in a Single Page Application (SPA).
} function App() { const [pageVis, setPageVis] = useState(true); return
{pageVis && } {!pageVis && }
{pageVis && } {!pageVis && }
} const root = ReactDOM.createRoot(document.querySelector('#mount')); root.render();
sssccc
sssccc

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!