我正在使用summernote html文本编辑器及其插入图像功能。 (当用户输入图像时,我将其发送到我的后端并用我的用户的img url替换)
示例:
用户输入:http://example.com/image.jpg - >将此图像上传到Amazon S3 - >更新summernote文本区域的img src =“”(mydomain.com/blabla.jpg)。
以上逻辑运作良好。这里没有问题。
然后我想将这个texarea发送到我的后端php脚本以获取db stuff。
但是当我进行血清化并提交表格时。 Ajax发送用户的图片网址。未替换图片网址。
/*GET USER'S IMAGE URL AND SEND IT TO BACKEND. UPLOAD IT, THEN RAPLACE IT'*/
/*THIS PART IS WORKING CORRECTLY */
$('button[data-original-title="Picture"]').click(function(){
// Set handler on Inset Image button when dialog window is opened
$('.modal-dialog .note-image-btn').on('click', function(e) {
var imageUrl = $('.modal-dialog .note-image-url').val();
var currentTitle = $("#title").val().trim();
if(currentTitle.length == 0){
currentTitle = "";
}
$.ajax({
url: "upload.php",
data: "url="+encodeURIComponent(imageUrl)+"&title="+encodeURIComponent(currentTitle),
type: "POST",
dataType: 'json',
success: function(data) {
if (typeof data[0] === 'string') {
$('img[src="' + imageUrl + '"]').attr('src', data);
} else {
// What to do if image downloading failed
window.alert('oops');
}
},
error: function () {
/* console.log("error");*/
}
});
});
});
/* SEND SERIALIZED FORM DATA TO BACKEND */
/* PROBLEM IS HERE. $("#form").serialize() CAN'T GET replaced IMAGE URL. */
$("#submitButton").on("click",function () {
$.ajax({
url: "save-article.php",
data: $("#form").serialize(),
type: "POST",
success: function(data) {
if(data === "success"){
$(".messageBox").html('<div class="alert alert-success ic">Thanks, you are redirecting</div>');
}else if(data === "fail"){
$(".messageBox").html('<div class="alert alert-danger ic">There was an error</div>');
}
},
error: function (e) {
console.log(e);
}
});*/
});
如何更改summernote文本区域的值并序列化?
答案 0 :(得分:0)
Summernote不使用初始化编辑器的元素,它将该元素中的数据复制到自己动态创建的界面中。您需要从Summernotes编辑区域复制数据(您可以使用类目标.note-editable
)。如果您还没有,我建议您查看Summernote主站点,以获取以编程方式获取代码的示例。 https://summernote.org/getting-started/#get--set-code