我正在寻找可以根据 Magento 细节解释“树”、“节点”和“集合”概念的人。例如,在下面的代码中,getStoreCategories() 方法将返回 Varien_Data_Tree_Node_Collection 的一个实例,它是可枚举的,$child 将是 Varien_Data_Tree_Node 类型的对象。我一般问,Magento 的 Tree、Node 和 Collection 是什么意思。
foreach ($this->getStoreCategories() as $child) {
if ($child->getIsActive()) {
$activeCategories[] = $child;
}
}
谢谢!