码迷,mamicode.com
首页 > Web开发 > 详细

关于富文本kindeditor中上传本地图片成功后获取到的图片路径是相对路径修改为绝对路径

时间:2019-06-24 16:54:18      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:pat   div   host   option   nbsp   theme   strong   atm   https   

找到kindeditor插件kindeditor-all.js,找到urltype的设置,

K.options = {
    designMode : true,
    fullscreenMode : false,
    filterMode : true,
    wellFormatMode : true,
    shadowMode : true,
    loadStyleMode : true,
    basePath : K.basePath,
    themesPath : K.basePath + themes/,
    langPath : K.basePath + lang/,
    pluginsPath : K.basePath + plugins/,
    themeType : default,
    langType : zh-CN,
    urlType : absolute,
    newlineTag : p,

改为absolute。然后全局搜索absolute,找到下面一行代码:

if (mode === relative) {
        url = getRelativePath(host + pathname, 0).substr(2);
    } else if (mode === absolute) {
        // if (url.substr(0, host.length) === host) {
        //  url = url.substr(host.length);
        // }
    }
    return url;
if (url.substr(0, host.length) === host) {
      url = url.substr(host.length);
 }这行代码会把上传的文件路径前面的域名端口都剪掉了,所以我们尝试将他们注释或者删除。就会拿到绝对路径。

 

作者:weijun-w
来源:CSDN
原文:https://blog.csdn.net/qq_37705048/article/details/80936820

关于富文本kindeditor中上传本地图片成功后获取到的图片路径是相对路径修改为绝对路径

标签:pat   div   host   option   nbsp   theme   strong   atm   https   

原文地址:https://www.cnblogs.com/moil/p/11077585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!