问题
部分手机系统的浏览器 pdf v2版本会出现 structuredclone is not defined 的报错,这是因为浏览器过低
解决
查看structuredClone的浏览器兼容性
polyfill
网站下方有个 polyfill的网址入口 可以解决低版本的兼容问题
相应网址core-js#structuredclone
安装相关依赖并使用
安装依赖
javascript
npm i core-js-pure
使用
javascript
//使用
import structuredClone from 'core-js-pure/actual/structured-clone';
//挂载到window
window.structuredClone = structuredClone;