1

可以在模板中的循环内通过 DataObject 以某种方式告诉您是否处于 $Pos 24 但从底部开始计数 - 例如:

<% if Pos = "-24" %>do stuff<% end_if %>
or like
<% if TotalItems - 24 = Pos %>do stuff<% end_if %>
or like
<% if Last(24) %>do stuff<% end_if %>
4

1 回答 1

4

在 Silverstripe 3 中,能够做到:

<% if FromBottom(24) %>
  Hello
<% end_if %>

您必须将MyCustomIteratorFunctions.php以下内容添加到您的 /code 文件夹中:

<?php
class MyCustomIteratorFunctions implements TemplateIteratorProvider
{

  protected $iteratorPos;
  protected $iteratorTotalItems;

  public static function get_template_iterator_variables()
  {
    return array('FromBottom');
  }

  public function iteratorProperties($pos, $totalItems)
  {
    $this->iteratorPos = $pos;
    $this->iteratorTotalItems = $totalItems;
  }

  function FromBottom($num)
  {
    return (($this->iteratorTotalItems - $this->iteratorPos) == $num);
  }
}

如此处所示:https ://groups.google.com/forum/#!msg/silverstripe-dev/DVBtzkblZqA/PWxanKGKDYIJ

于 2012-12-31T01:02:21.970 回答