写真がサマーノートでアップロードされている間にスピンを表示しようとしていますが、サマーノートはエラーをスローします: Uncaught TypeError: Cannot read property 'bookmark' of null. 写真はパソコンに保存されていますが、summernote が表示されません。
これは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);
}
});
}