我不想tinymce
使用blob来拍摄小图像,因为我正在将那些data:images
转换为真实图像,并且在我拥有真实图像后我正在替换img src=""
。如何管理它才能获得data:image
张图片?可能吗?
我试过了
automatic_uploads: false
但它不会改变任何东西。
这是我的代码:
tinymce.init({
selector: strSelector + "textarea:not(#strDescription)",
paste_data_images: true,
image_advtab: true,
mode: "specific_textareas",
editor_selector: "mceEditor",
automatic_uploads: false,
file_picker_callback: function(callback, value, meta) {
if (meta.filetype == 'image') {
$('#upload').trigger('click');
$('#upload').on('change', function() {
var file = this.files[0];
var reader = new FileReader();
reader.onload = function(e) {
callback(e.target.result, {
alt: ''
});
};
reader.readAsDataURL(file);
});
}
},
plugins: [
"advlist autolink lists link image imagetools charmap preview anchor code",
"searchreplace visualblocks code fullscreen",
"insertdatetime table contextmenu paste imagetools"
],
setup: function(editor) {
editor.on('change', function() {
editor.save();
});
}
});
答案 0 :(得分:1)
可以通过添加以下过滤器来禁用Blob转换:
TinyMCE docs: images_dataimg_filter
tinymce.init({
images_dataimg_filter: function(img) {
return img.hasAttribute('internal-blob');
}
});