html 模板中的 smarty 相对链接?

发布于 2024-12-27 21:27:09 字数 363 浏览 1 评论 0原文

我们如何在 smarty 中包含模板文件中的样式表?

我们可以使用相对路径还是必须是绝对路径?

结构可能类似于

project
|-- library
    |-- css
        |-- style.css
|--template
   |--index.tpl
|--template_c

index.tpl 访问 style.css 的正确格式是什么?

../library/css/style.css吗?或者 /project/library/css/style.css

how do we include style sheets from a template file in smarty?

ca we use a relative path or does it have to be n absolute path?

structure might look like

project
|-- library
    |-- css
        |-- style.css
|--template
   |--index.tpl
|--template_c

in the index.tpl what would be the proper format to access style.css?

would it ../library/css/style.css? or
/project/library/css/style.css?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

伴梦长久 2025-01-03 21:27:09

这取决于你想做什么。

如果您的目标是让浏览器访问 css 文件,则需要指定相对于文档根目录的路径。因此,如果您的项目位于 htdocs 中,则它可能是 /project/library/css/style.css

如果您的目标是读取 Smarty 中的 CSS(比如内联它),您需要指定绝对文件路径(例如 /home/users/foo/project/library/css/style.css

访问与当前模板文件相关的文件可以使用 ./file 和 ../file - 但仅适用于 {include} 和 {extends}。其他所有内容都必须是绝对的或相对于实际执行的脚本的 CWD(当前工作目录)。

It depends on what you want to do.

If your goal is to have the browser access the css file, you need to specify the path relative to the document root. so, if your project lies within htdocs, it might be /project/library/css/style.css.

If your goal is to read the CSS within Smarty (say to inline it) you need to specify the absolute file path (e.g. /home/users/foo/project/library/css/style.css)

Accessing files relative to the current template file works with ./file and ../file - but only for {include} and {extends}. Everything else must either be absolute or relative to the CWD (current working directory) of the actually executed script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文