Smarty 中作为 {if} 目标的方法
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
assign_by_ref
代替register_object
:然后就可以访问方法了:
Use
assign_by_ref
instead ofregister_object
:Then you can access methods: