html 模板中的 smarty 相对链接?
我们如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于你想做什么。
如果您的目标是让浏览器访问 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.