У меня есть две сущности: Product
а также Feature
, Product
имеет много других Features
(отношение один ко многим). каждый Feature
имеет имя и важный статус (true, если функция важна, false, если нет). Я хочу получить в TWIG все важные функции для моего продукта.
Решение ниже очень уродливо:
Product: {{ product.name }}
Important features:
{% for feature in product.features %}
{% if feature.important == true %}
- {{ feature.name }}
{% endif %}
{% endfor %}
Итак, я хочу получить:
Product: {{ product.name }}
Important features:
{% for feature in product.importantFeatures %}
- {{ feature.name }}
{% endfor %}
Я должен фильтровать данные в объекте объекта, но как?
// MyBundle/Entity/Vehicle.php
class Product {
protected $features; // (oneToMany)
// ...
protected getFeatures() { // default method
return $this->features;
}
protected getImportantFeatures() { // my custom method
// ? what next ?
}
}
// MyBundle/Entity/Feature.php
class Feature {
protected $name; // (string)
protected $important; // (boolean)
// ...
}
Ты можешь использовать критерии класс для фильтрации Arraycollection связанных объектов
class Product {
protected $features; // (oneToMany)
// ...
protected getFeatures() { // default method
return $this->features;
}
protected getImportantFeatures() { // my custom method
$criteria = \Doctrine\Common\Collections\Criteria::create()
->where(\Doctrine\Common\Collections\Criteria::expr()->eq("important", true));
return $this->features->matching($criteria);
}
}
В ветке
Product: {{ product.name }}
Important features:
{% for feature in product.getImportantFeatures() %}
- {{ feature.name }}
{% endfor %}
Вы можете сделать это из хранилища
$featureEntityRepository->findBy(array(
'impoertant' => true,
'product' => $product->getId()
));