Smarty 中作为 {if} 目标的方法

发布于 2024-08-21 10:08:50 字数 447 浏览 8 评论 0原文

有没有办法在 Smarty 模板中使用对象的方法调用作为条件的目标?

作为一个具体示例,我有一个带有方法 loggedIn() 的对象 $user。我想使用此方法在用户登录时显示额外信息。

目标:

{user->loggedIn assign="loggedIn"}
{if $loggedIn}
  // show extra info
{/if}

我可以将此方法的返回值分配给临时变量并将其用作 {if}的 有办法跳过这个中间步骤吗?我想要这样的东西(不起作用):

{if user->loggedIn}
  // show extra info
{/if}

我在 Smarty 的文档中找不到任何使用此类对象的示例。

Is there a way to use a method call of an object as the target of a conditional in a Smarty template?

As a concrete example, I have an object $user with a method loggedIn(). I want to use this method to show extra info if the user is logged in.

I can assign the return value of this method to a temporary variable and use this as the target of {if}:

{user->loggedIn assign="loggedIn"}
{if $loggedIn}
  // show extra info
{/if}

Is there a way to skip this intermediate step? I'd like something like this (doesn't work):

{if user->loggedIn}
  // show extra info
{/if}

I can't find any examples of using objects like this in Smarty's documentation.

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

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

发布评论

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

评论(1

无名指的心愿 2024-08-28 10:08:50

使用 assign_by_ref 代替register_object

$smarty->assign_by_ref('user', $user);

然后就可以访问方法了:

{if $user->loggedIn()}
    // show extra info
{/if}

Use assign_by_ref instead of register_object:

$smarty->assign_by_ref('user', $user);

Then you can access methods:

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