Croppie js 图像仅在 IE 11 中不加载
Croppie js Image Not Loading only In IE 11
我正在使用 croppie js 在我的项目中加载图像,图像在 Chrome 和 Firefox 中加载正常。
这是我在 Chrome 和 Firefox
上得到的
还有这个在 Internet Explorer 11 上。
这是我的代码
var basic = $("#div" + selector).croppie({
viewport: {
width: 200,
height: 200
},
boundary: {
width: widthContainer,
height: 300
},
showZoomer: true,
enforceBoundary:true
});
var bindPromise = basic.croppie('bind', {
url: path
});
$("#pnlcrop .cropcontainer div.croploader").remove();
$("#div" + selector).show();
}
谁能告诉我为什么这个问题会出现在 IE11 上?
我使用 enableExif: true
和 exif.js
解决了这个问题。
这是我的固定代码:
$("#div" + selector).croppie('destroy');
var basic = $("#div" + selector).croppie({
enableExif: true,
viewport: {
width: 200,
height: 200
},
boundary: {
width: widthContainer,
height: 300
},
showZoomer: true,
enforceBoundary:true
});
var bindPromise = basic.croppie('bind', {
url: path,
});
我正在使用 croppie js 在我的项目中加载图像,图像在 Chrome 和 Firefox 中加载正常。
这是我在 Chrome 和 Firefox
还有这个在 Internet Explorer 11 上。
这是我的代码
var basic = $("#div" + selector).croppie({
viewport: {
width: 200,
height: 200
},
boundary: {
width: widthContainer,
height: 300
},
showZoomer: true,
enforceBoundary:true
});
var bindPromise = basic.croppie('bind', {
url: path
});
$("#pnlcrop .cropcontainer div.croploader").remove();
$("#div" + selector).show();
}
谁能告诉我为什么这个问题会出现在 IE11 上?
我使用 enableExif: true
和 exif.js
解决了这个问题。
这是我的固定代码:
$("#div" + selector).croppie('destroy');
var basic = $("#div" + selector).croppie({
enableExif: true,
viewport: {
width: 200,
height: 200
},
boundary: {
width: widthContainer,
height: 300
},
showZoomer: true,
enforceBoundary:true
});
var bindPromise = basic.croppie('bind', {
url: path,
});