我在我的React应用程序中使用react-image-crop(https://github.com/DominicTobias/react-image-crop)来裁剪图像:
我知道IE 11不支持toBlob
,并且正在尝试使用此polyfill:https://github.com/eligrey/canvas-toBlob.js
我运行了yarn add canvas-toBlob
,然后将其作为import canvasToBlob from 'canvas-toBlob';
导入到我的react组件中。我不断收到错误消息:“对象不支持此操作”。还有什么我应该做的?
我应该将脚本导入到主index.html
中吗?