如何将嵌套模板与 Smarty 结合使用?

发布于 2024-11-13 09:56:44 字数 66 浏览 1 评论 0原文

我尝试了一些方法,但它们要么抛出 SmartyException,要么嵌套模板无法访问我在 PHP 文件中分配的变量。

I tried some ways, but they either threw a SmartyException or the nested templates didn't have access to the variables I assigned in my PHP file.

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

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

发布评论

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

评论(3

ㄖ落Θ余辉 2024-11-20 09:56:44

在 Smarty 3 中,有更好的方法来做到这一点。
查看模板继承。这比{include}方便得多。

In Smarty 3 there is a better way to do this.
Check out the Template Inheritance. This is much more convenient than {include}.

执笔绘流年 2024-11-20 09:56:44

聪明3
http://www.smarty.net/docs/en/api.create .template.tpl

您应该使用

string createTemplate(string template,
                      string cache_id,
                      string compile_id,
                      object parent);

其中父参数是您的父模板

parent 是一个可选参数。这是
到主要 Smarty 对象的上行链路,
用户创建的数据对象或另一个
用户创建的模板对象。这些
对象可以被链接起来。模板
只能访问分配给的变量
父对象中的任何对象
链。

Smarty 3
http://www.smarty.net/docs/en/api.create.template.tpl

You should use

string createTemplate(string template,
                      string cache_id,
                      string compile_id,
                      object parent);

Where parent param is your parent template

parent is an optional parameter. It is
an uplink to the main Smarty object, a
user-created data object or to another
user-created template object. These
objects can be chained. The template
can access only variables assigned to
any of the objects in the parent
chain.

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