我想使用Croppie上传和裁剪图像。 question 我已将croppie.css和croppie.js添加到我的文件中。我想在叠加页面中添加Croppie,以下是此代码:
overLayPage(){
// overlay--active
$("body").append(`
<div class="overlay" id="image-editor-overlay">
</div>
`);
}
然后在构造函数中,我使用这些代码初始化Croppie。
constructor() {
this.overLayPage();
var c = new Croppie(document.getElementById('item'), '#image-editor-overlay' );
c.method(args);
this.body = $("#image-editor-overlay");
this.events();
}
编译完成后,我正面临这个错误。 (对不起,我不知道为什么屏幕截图在链接中)。
https://foliotek.github.io/Croppie/
非常感谢你。我是javascript的新手。