使用相对路径包含子文件夹中的 Smarty 模板

发布于 2024-12-07 08:37:03 字数 389 浏览 1 评论 0原文

我已经为 smarty 模板创建了一个文件夹结构,

f 
.f1 
..template1.tpl 
..test.tpl 
template1.tpl 

template_dir 路径指向

test.tpl 中的文件夹“f/”,下面的代码是

{include file="template1.tpl"} 
{include file="../template1.tpl"} 

此代码不起作用。知道我哪里可能出错吗?

我读到关于 $smarty-> use_sub_dirs = true,它确实在我的 template_c 文件夹中创建了子文件夹,但我仍然无法按照上面的代码包含模板。

提前致谢。

I have created a folder structure for smarty templates

f 
.f1 
..template1.tpl 
..test.tpl 
template1.tpl 

the template_dir path is pointed to folder 'f/'

in test.tpl is the code below

{include file="template1.tpl"} 
{include file="../template1.tpl"} 

This code does not work. Any idea where I might be going wrong?

I read about $smarty-> use_sub_dirs = true, which did create subfolders in my template_c folder but I'm still not able to include templates as per the above code.

Thanks in advance.

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

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

发布评论

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

评论(1

╰沐子 2024-12-14 08:37:03

只需将 f1 添加到您的网址

{include file="f1/template1.tpl"}

just add f1 to your URL

{include file="f1/template1.tpl"}

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