Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MODx Revo 中使用 Login 片段,我试图将模板直接放在 loginTpl 和 logoutTpl 属性中,但没有输出任何内容。下面是我的代码。我究竟做错了什么?提前致谢!
[[!Login? &tplType=`inline` &loginTpl=`<span>Log In</span>` &logoutTpl=`<span>[[+username]]</span>`]]
占位符在处理代码片段之前进行评估,即在@INLINE tpl使用之前。
@INLINE tpl
使用块;或不可缓存的占位符(未经测试):
[[!Login? &tplType=`inline` &loginTpl=`<span>Log In</span>` &logoutTpl=`<span>[[!+username]]</span>`]]
它完全工作,检查是否安装了登录组件(默认情况下未安装)。