kindeditor 怎么上传图片

2025-04-19 11:34:55
推荐回答(1个)
回答1:

过KindEditor实现图片上传功能步骤:

(1)修改../plugins/image.js文件中fileName类型为file的name

(2)
添加上传处理的URL:

var editor;

KindEditor.ready(function(K) {
editor =
K.create('#myeditor',
{

uploadJson :
'/uploadImg'

});
});
(3)返回Json的信息: