在 magento2 中加载 jquery cropzee 函数时出现问题
issue while loading jquery cropzee function in magento2
这是我的 html 文件
require(['jquery','croppr','canvastoblob','FileSaver'],
function($,croppr,canvastoblob,FileSaver){
$(document).ready(function($) {
$("#crop").cropzee();
});
var defaultWidth = 210;
$.fn.extend({
cropzee: function (options = {
aspectRatio: null,
maxSize: null,
minSize: null,
startSize: [100, 100, '%'],
.....
......
})
})
加载此页面时在控制台中显示这样的错误
index:373 Uncaught TypeError: $(...).cropzee is not a function
函数调用或其他地方是否有错误?
任何人,请帮我解决这个错误。
提前致谢
将此代码放在 file.Fix 我的问题结束之前。
$("#crop").cropzee();
});
这是我的 html 文件
require(['jquery','croppr','canvastoblob','FileSaver'],
function($,croppr,canvastoblob,FileSaver){
$(document).ready(function($) {
$("#crop").cropzee();
});
var defaultWidth = 210;
$.fn.extend({
cropzee: function (options = {
aspectRatio: null,
maxSize: null,
minSize: null,
startSize: [100, 100, '%'],
.....
......
})
})
加载此页面时在控制台中显示这样的错误
index:373 Uncaught TypeError: $(...).cropzee is not a function
函数调用或其他地方是否有错误? 任何人,请帮我解决这个错误。
提前致谢
将此代码放在 file.Fix 我的问题结束之前。
$("#crop").cropzee();
});