关于富文本kindeditor中上传本地图片成功后获取到的图片路径是相对路径修改为绝对路径
Posted moil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于富文本kindeditor中上传本地图片成功后获取到的图片路径是相对路径修改为绝对路径相关的知识,希望对你有一定的参考价值。
找到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中上传本地图片成功后获取到的图片路径是相对路径修改为绝对路径的主要内容,如果未能解决你的问题,请参考以下文章
富文本框插件KindEditor 上传图片不走后台直接js上传文件到oss要怎么处理?