我有一个codeandbox(https://jjzlzn1jky.codesandbox.io/),它只有一个带有src="/src/index.js"
的脚本标签。
每当我重新加载页面时,index.js就是console.log("started")
,代码执行两次(即,两次将“ started”记录到控制台)。
有什么想法可以阻止这种情况吗?
这是代码!
// src/index.js
console.log("started");
<html>
<head>
<title>src/index.js runs twice</title>
<meta charset="UTF-8" />
</head>
<body>
<p>src/index.js runs twice</p>
<script src="src/index.js"></script>
</body>
</html>