我正在使用带有 react-rails 的 javascript 图像裁剪器(croppie)。我已经在 react 中设置了croppie,它工作正常。这是我的代码。
var el = $('.crop-area')[0];
var vanilla = new Croppie(el, {
// enforceBoundary: false,
viewport: { width: 200, height: 200 },
boundary: { width: 300, height: 300 },
showZoomer: false,
// enableResize: true,
enableOrientation: true
});
vanilla.bind({
url: this.props.imgSrc,
});
this.vanilla = vanilla;
这是我的图像 src
<img className="crop-area image-responsive" src={this.props.imgSrc}/>
<button className="btn btn-primary" onClick={this.resultantImage}>Image</button>
当我尝试使用“onClick = {this.resultantImage}”获取裁剪图像时,如下所示:
resultantImage: function() {
var _this = this;
this.vanilla.result('base64','original').then(function (resp) {
console.log(resp);
});
},
- 当我尝试检查此图像 src 时,resp 给了我图像 src 它是空白的(透明)?
- 当我尝试将此图像保存在回形针中时,还有一个空白图像?
请帮忙。谢谢