上传图片工具,KindEditor图片上传
KindEditor图片上传
(2011-05-08 12:19:11)通过KindEditor实现图片上传功能步骤:
(1)修改../plugins/image.js文件中fileName类型为file的name
(2) 添加上传处理的URL:
var editor;
KindEditor.ready(function(K) {
editor = K.create('#myeditor',
{
uploadJson : '/uploadImg'
});
});
//成功时 { "error" : 0, "url" : "http://www.example.com/path/to/file.ext" }
//失败时 { "error" : 1, "message" : "错误信息" }

浙公网安备 33010602011771号