我正在尝试显示旋转,而照片是使用summernote上传的,但是summernote会给我一个错误:未捕获TypeError:无法读取属性'bookmark'的null。 照片保存在我的电脑中,但夏令时没有显示。
这是mi代码:
var awaitingPopUp = '<div class="text-right"><img src="${pageContext.request.contextPath}/resources/img/spinner.gif" width="50px"/></><br /><br />';
var edit = function() {
$('.text').summernote({focus: true,height: 1000,
onImageUpload: function(files, editor, welEditable) {
sendFile(files[0], editor, welEditable);
}
});
};
function sendFile(file, editor, welEditable) {
var processDialog=bootbox.dialog({ message: awaitingPopUp, title: 'Subiendo y guardando las fotos...' });
var data = new FormData();
data.append("file", file);
$.ajax({
data: data,
type: "POST",
url: "${pageContext.request.contextPath}/addImageBlog.html/8",
cache: false,
contentType: false,
processData: false,
success: function(url) {
processDialog.modal('hide');
alert(url);
editor.insertImage(welEditable, url);
},
error: function(data){
alert("failure"+data);
}
});
}
答案 0 :(得分:0)
我刚刚解决了这个问题,而不是使用bootbox或普通模式,有必要使用类note-image-dialog模式。这个类在summernote-bs3.css
中