gpt4 book ai didi

templates - .ss 文件中的 SIlverstripe 检查页面名称

转载 作者:行者123 更新时间:2023-12-03 08:03:45 25 4
gpt4 key购买 nike

我想在模板 .ss 文件中检查页面名称或标题,以便显示不同的图像。我想做这样的事情:

<% if $SiteConfig.Title == 'video' %> 
<img src="themes/blackcandy/images/image.jpg" />
<% else if $SiteConfig.Title == 'bio' %>
<img src="themes/blackcandy/images/image1.jpg" />
...
...

<% end_if %>

上面的代码当然是行不通的。我该怎么做?有没有更有效的方法?

非常感谢。
毛罗

最佳答案

如果你想通过标题检查它使用 $Title(没有 SiteConfig Controller )?

<% if $Title == 'video' %> 
<img src="themes/blackcandy/images/image.jpg" />
<% else if $Title == 'bio' %>
<img src="themes/blackcandy/images/image1.jpg" />
<% end_if %>

如果你想检查 PageType 使用 ClassName

<% if ClassName = PageType1 %>
<img src="themes/blackcandy/images/image1.jpg" />
<% end_if %>

如果您想通过 Url 检查使用 UrlSegment(请参阅 Clints 回答)

关于templates - .ss 文件中的 SIlverstripe 检查页面名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11422940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com