我正在Symfony2中创建一个应用程序。这是我第一次使用框架和我的第一个项目开发。这是一个学生项目。
在这个项目中,我希望在到达视图之前将我的实体集合排序到某个地方。这可以通过这种方式完成:
在多对一关系上的实体上的getter中,多边的比较器方法在一侧的getter中由usort()方法使用。下面我有一个方法也填补了“日”实体集合中的空白(以日记的形式),但关键是它用usort对日期进行排序。
在用户实体类中:
public function getDaysWithNulls()
{
$days = $this->getDays()->toArray();
//get the first day and find out how many days have passed
usort($days, array("\Pan100\MoodLogBundle\Entity\Day", "daySorter"));
$firstEntry = $days[0];
$interval = $firstEntry->getDate()->diff(new \DateTime());
$numberOfDaysBack = $interval->d;
//create an array consisting of the number of days back
$daysToShow = array();
for ($i=0; $i < $numberOfDaysBack ; $i++) {
$date = new \DateTime();
$date->sub(new \DateInterval('P' . $i . 'D'));
$daysToShow[] = $date;
}
$daysToReturn = array();
foreach ($daysToShow as $day) {
//figure out if this day has an entity, if not set an empty Day object
$dayEntityToProcess = new \Pan100\MoodLogBundle\Entity\Day();
$dayEntityToProcess->setDate($day);
foreach ($days as $dayEntity) {
//check if there is a day entity
if($day->format('Y-m-d') == $dayEntity->getDate()->format('Y-m-d')) {
$dayEntityToProcess = $dayEntity;
}
}
$daysToReturn[] = $dayEntityToProcess;
}
//return a collection
return new \Doctrine\Common\Collections\ArrayCollection($daysToReturn);
}
usort在Day实体类中使用它:
static function daySorter($dayEntity1, $dayEntity2) {
$interval = $dayEntity1->getDate()->diff($dayEntity2->getDate());
if($interval->invert == 1) {
return +1;
}
else if ($interval->invert == 0) {
return 0;
}
else return -1;
}
我的问题是:这是排序和返回已排序集合的最佳做法,还是应该在其他地方进行排序?
答案 0 :(得分:1)
我确实认为这是一种马克思的做法。所以我搜索了一下网页,并阅读了一些内容,发现我可以创建自定义存储库。
我会这样做:
http://symfony.com/doc/2.1/book/doctrine.html#custom-repository-classes
编辑:发现排序最好在注释中完成:
/**
* @ORM\OneToMany(targetEntity="Day", mappedBy="user_id")
* @ORM\OrderBy({"date" = "DESC"})
**/
protected $days;