解决方式:
只需要在index.html的顶部增加一行
javascript<script> if (typeof structuredClone === 'undefined') { window.structuredClone = function(obj) { return JSON.parse(JSON.stringify(obj)); }; } </script>这是在Safari浏览器报的错误,报错原因是iPad Safari 太老,不支持
structuredClone新 API
