使用 Kohana 将 css、js 和图像文件包含到模板中的正确方法是什么?
使用 Kohana,使用模板系统,链接到样式表、javascript 文件和最重要的图像的正确方法是什么?
我应该在链接前面添加 吗?这确实有效,但似乎不是正确的做事方法。
正确的方法是什么?
With Kohana, using a Templating system, what is the correct way to link to the style sheets, javascript files and most importantly images?
Shall I add <?php echo url::base() ?>
in front of links? This surely does work but doesn't seem like the correct way to do things.
What is the correct way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DOCROOT
中的某个位置:DOCROOT/assets/images/
url::base().'assets/images/thing.png
url::site('assets/images/thing.png')
DOCROOT
somewhere:DOCROOT/assets/images/
url::base().'assets/images/thing.png
url::site('assets/images/thing.png')
<base href="<?=url::base()?>
(then use normal relative links in your html)