kindeditor如何使用绝对路径
解决方法:
初始化ueditor的时候配置urlType : 'absolute',那么只要你后台上传接口返回url参数是完整的文件路径即可。
KindEditor.ready(function(K) {
K.create('textarea[class="editor_content"]', {
allowFileManager : true,
urlType : 'absolute',
items : [
'preview','fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline','lineheight',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|','image', 'link','fullscreen'],
});
});