我正在使用summernote,我们当前面临的问题是,当用户粘贴文件时如何限制文件的大小。我们已经禁用了该工具,因此无法通过该工具上传。
添加图像的唯一方法是通过粘贴( ctrl + v )。我们只允许添加2 MB以下的图像。
$('textarea.summernote').summernote({
toolbar:[],
height: h,
maximumImageFileSize: 2097152,
callbacks: {
onPaste: function(e) {
//Do Something
}
}
});
即使我们指定了maximumImageFileSize
,仍然可以粘贴超过2 MB的图像或调整其大小。