gpt4 book ai didi

php - 如何在 Symfony 2 和 Doctrine 中过滤实体对象内的数据

转载 作者:可可西里 更新时间:2023-11-01 00:59:20 25 4
gpt4 key购买 nike

我有两个实体:ProductFeatureProduct 还有许多其他 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)
// ...
}

最佳答案

您可以使用 Criteria类过滤掉相关特征的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);
}
}

在 Twig 上

Product: {{ product.name }}
Important features:
{% for feature in product.getImportantFeatures() %}
- {{ feature.name }}
{% endfor %}

关于php - 如何在 Symfony 2 和 Doctrine 中过滤实体对象内的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31838216/

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