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.
我面临一些难以完成这个看似简单的任务。
我在一个嵌套块(suggest.phtml)中,我想从父块(result.phtml)中获取一个值(搜索结果的数量,以及集合计数)
我错了还是这里没有简单的方法?
好的解决了。
可以通过以下方式访问父块:
$this->getParentBlock();
所以在这种特殊情况下:
$searchCount = $this->getParentBlock() ->getParentBlock() ->getParentBlock() ->getResultCount();