update cherry-markdown.js&cherry_markdown.js (#947)

* update images upload

* modify js res.url

* add froala

* froala-editor.js

* update cherry-markdown&cherry_markdown.js
pull/956/head
hotqin888 2024-06-11 18:52:03 +08:00 committed by GitHub
parent 0ce6c5bbf9
commit 66cd615461
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 8 deletions

View File

@ -21811,7 +21811,7 @@
function handleUpload(editor) {
var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'image';
var accept = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '*';
var callback = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
// var callback = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
// type为上传文件类型 image|video|audio|pdf|word
var input = document.createElement('input');
input.type = 'file';
@ -21819,14 +21819,18 @@
input.value = '';
input.style.display = 'none';
input.accept = accept; // document.body.appendChild(input);
input.multiple = 'multiple';
input.addEventListener('change', function (event) {
// @ts-ignore
var _event$target$files = _slicedToArray(event.target.files, 1),
file = _event$target$files[0]; // 文件上传后的回调函数可以由调用方自己实现
// var _event$target$files = _slicedToArray(event.target.files, 1),
// file = _event$target$files[0]; // 文件上传后的回调函数可以由调用方自己实现
// 3xxx 20240607
let files = event.target.files;
for (let i = 0; i < files.length; i++) {
var file = files[i]
editor.options.fileUpload(file, function (url) {
var callback = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
// 文件上传的默认回调行数,调用方可以完全不使用该函数
@ -21866,6 +21870,7 @@
editor.editor.doc.replaceSelection(code);
});
}
});
input.click();
}

View File

@ -612,6 +612,7 @@ function myFileUpload(file, callback) {
$.ajax({
url: window.fileUploadURL, // 确保此 URL 是文件上传 API 的正确 URL
type: "POST",
async: false, // 3xxx 20240609这里修改为同步保证cherry批量上传图片时插入的图片名称是正确的否则插入的图片名称都是最后一个名称
dataType: "json",
data: formData,
processData: false, // 必须设置为 false因为数据是 FormData 对象,不需要对数据进行序列化处理
@ -629,10 +630,10 @@ function myFileUpload(file, callback) {
},
success: function (data) {
layer.close(layerIndex);
if (data.errcode !== 0) {
layer.msg(data.message);
if (data[0].errcode !== 0) {
layer.msg(data[0].message);
} else {
callback(data.url); // 假设返回的 JSON 中包含上传文件的 URL调用回调函数并传入 URL
callback(data[0].url); // 假设返回的 JSON 中包含上传文件的 URL调用回调函数并传入 URL
}
}
});