TinyMCE 插入图像 - 路径错误
当我尝试插入具有如下路径的图像时:
/wombat/htdocs/web/icon.png
插入后将其转换为:
../../../icon.png
为什么?哪部分代码正在执行此操作?如何禁用它?
When im trying to insert image with path like this:
/wombat/htdocs/web/icon.png
after insert its being converted to:
../../../icon.png
why? What part of code is doing it? How to disable it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,TinyMCE 将 URL 转换为相对 URL。您需要将 relative_urls 配置项设置为 false。
By default TinyMCE converts URLs to relative URL. You need to set the relative_urls config item to false.