当我想要相对路径时,Javascript fileobj.url 返回绝对路径
我已经开始按照自己的意愿弯曲 Habari,并且刚刚注意到 javascript 驱动的图像插入功能在构建 HTML 时通过调用 fileobj.url
返回绝对路径。
当人们希望能够在测试台上运行博客镜像时,这是一个问题,因为我的测试台图像插入全部源自 d:\websites\habari\...
有没有一种简单的方法可以让 fileobj
输出相对路径而不是绝对路径?
(发现了各种关于相对 --> 绝对的问题,但没有其他方式!)
I've begun bending Habari to my will, and just noticed that the javascript-driven image insert feature returns the absolute path by calling fileobj.url
when building the HTML.
This is a bit of a problem when one wants to be able to run a blog mirror on a testbed, since my testbed image inserts are all sourced to d:\websites\habari\...
Is there an easy way to get fileobj
to cough out a relative path rather than absolute?
(found all sorts of questions about relative --> absolute, but none the other way!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够添加 Javascript 来覆盖
habari.media.output
。例如,请参阅添加 Javascript 和 CSS 的 wiki 页面,以及编辑器插件jwysiwyg,它做类似的事情。然后,您应该能够通过调用Site::url('habari')
和一些字符串修改来删除 Habari 的域和路径。You should be able to add Javascript to override
habari.media.output
. See the wiki page on Adding Javascript and CSS, as well as the editor plugins, for example jwysiwyg, which do something similar. Then you should be able to remove the domain and path to Habari with a call toSite::url('habari')
and some string munging.