使用相对路径包含子文件夹中的 Smarty 模板
我已经为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 f1 添加到您的网址
{include file="f1/template1.tpl"}
just add f1 to your URL
{include file="f1/template1.tpl"}