ueditor thinkcmf mailto 的一系列需要解决的毛病
给客户做的网站,用 thinkcmf 做的 cms 系统,里面文章里面需要触发 mailto 的功能,狗日的最后渲染出来的地址乱七八糟,加了两层 http .
问题有两个:
- ueditor 自身处理的时候,会自动增加 http 前缀.不知道图啥.
代码位置:public/static/js/ueditor/dialogs/link/link.html
大约90行左右,增加 mailto 的条件.不过值得提一下,可能是版本问题,ueditor 的 config 文件中,allowLinkProtocols 里面其实有mailto的,但是并没有什么卵用??1
2
3if (!hrefStartWith(href, ["http", "/", "ftp://", '#', 'mailto'])) {
href = "http://" + href;
}
这个问题处理过了,发现还有一层.
- 是 thinkcmf 的问题.
渲染 html 内容的时候,会调用:
simplewind/cmf/common.php的 1601行左右 cmf_replace_content_file_url()方法:
1650行 我改成了:
1 | if (preg_match("/^mailto/", $href)) { |
不再处理这个 href.
然后清理下 thinkcmf 的缓存,前端强制刷新下.
问题解决.
ueditor thinkcmf mailto 的一系列需要解决的毛病
2018/09/06/note-ueditor-thinkcmf-mailto-的一系列需要解决的毛病/
评论
评论插件加载失败
正在加载评论插件