使用 Kohana 将 css、js 和图像文件包含到模板中的正确方法是什么?

发布于 2025-01-05 16:44:17 字数 163 浏览 1 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘心安 2025-01-12 16:44:17
  1. 将资源放入 DOCROOT 中的某个位置:DOCROOT/assets/images/
  2. 使用以下任意选项:
    • url::base().'assets/images/thing.png
    • url::site('assets/images/thing.png')
  1. Put the assets in your DOCROOT somewhere: DOCROOT/assets/images/
  2. Use any of the following:
    • url::base().'assets/images/thing.png
    • url::site('assets/images/thing.png')
    • <base href="<?=url::base()?> (then use normal relative links in your html)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文