如何从 ArrayCollection (Symfony) 检索数据?
How can I retrieve data from ArrayCollection (Symfony)?
动物:
| id | name |
|----|------|
| 1 | cat |
| 2 | dog |
| 3 | frog |
类别:
| id | name |
|----|--------|
| 1 | green |
| 2 | blue |
| 3 | orange |
animals_category:
| animals_id | category_id |
|------------|-------------|
| 1 | 1 |
| 2 | 1 |
| 2 | 2 |
我想要做的是为 dog
:
获取 categories
green, blue
这是我的方法:
控制器:
$id = '2';
$result = $this->getDoctrine()->getRepository('Animals:Category')->findByIdJoinedToCategory(['id'=>$id]);
动物库:
public function findByIdJoinedToCategory()
{
$query = $this->getEntityManager()
->createQuery(
'SELECT a, b FROM Animals:Category a
JOIN a.category b');
try {
return $query->getResult();
} catch (\Doctrine\ORM\NoResultException $e) {
return null;
}
}
但我收到一条错误消息:
Unknown Entity namespace alias 'Animals'.
实体Animals
:
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @ORM\Entity(repositoryClass="App\Repository\AnimalsRepository")
*/
class Animals
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
/**
* @ORM\ManyToMany(targetEntity="Category")
* @ORM\JoinColumn(name="category", referencedColumnName="id")
*/
private $category;
public function getId(): ?int
{
return $this->id;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
public function getCategory()
{
return $this->category;
}
public function setCategory($category): self
{
$this->category = $category;
return $this;
}
public function addCategory(Category $category): self
{
$this->category[] = $category;
return $this;
}
public function __construct()
{
$this->category = new ArrayCollection();
}
}
没有 Animals:Category
实体。您有实体 Animals
和 Category
.
正确答案取决于您使用的是 Symfony 3 还是 4,因为 Symfony 3 使用实体别名(命名空间带有您尝试使用的 :
符号),而 Symfony 4 更喜欢完全限定的命名空间(\App\Entity\Animals
).
因此,第一个错误是在您尝试获取存储库的行中:
getRepository('Animals:Category')
DQL 查询 findByIdJoinedToCategory()
中的第二个:
'SELECT a, b FROM Animals:Category a
JOIN a.category b'
现在解决方案:
Symfony 3
由于看起来您没有任何捆绑包(我猜它是 Symfony 4,但无论如何),您没有任何实体名称空间别名,所以您应该简单地使用它的名称。
getRepository('Animals')
现在,我假设 a
你想引用 Animals
entity/table,所以它应该是
'SELECT a, b FROM Animals a
JOIN a.category b'
Symfony 4
如果您使用 Symfony 4,则应使用实体 FQNS 作为实体名称 (App\Entity\Animals
)。
所以会是
getRepository('\App\Entity\Animals')
或
getRepository(\App\Entity\Animals::class)
获取存储库。第二种更好,因为它会在需要时更容易重构(IDE 将能够找到 class 的用法)。
在查询中它将是
'SELECT a, b FROM App\Entity\Animals a
JOIN a.category b'
或者如果您想避免使用硬编码字符串 class 名称:
'SELECT a, b FROM ' . \App\Entity\Animals:class . ' a
JOIN a.category b'
动物:
| id | name |
|----|------|
| 1 | cat |
| 2 | dog |
| 3 | frog |
类别:
| id | name |
|----|--------|
| 1 | green |
| 2 | blue |
| 3 | orange |
animals_category:
| animals_id | category_id |
|------------|-------------|
| 1 | 1 |
| 2 | 1 |
| 2 | 2 |
我想要做的是为 dog
:
categories
green, blue
这是我的方法:
控制器:
$id = '2';
$result = $this->getDoctrine()->getRepository('Animals:Category')->findByIdJoinedToCategory(['id'=>$id]);
动物库:
public function findByIdJoinedToCategory()
{
$query = $this->getEntityManager()
->createQuery(
'SELECT a, b FROM Animals:Category a
JOIN a.category b');
try {
return $query->getResult();
} catch (\Doctrine\ORM\NoResultException $e) {
return null;
}
}
但我收到一条错误消息:
Unknown Entity namespace alias 'Animals'.
实体Animals
:
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @ORM\Entity(repositoryClass="App\Repository\AnimalsRepository")
*/
class Animals
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
/**
* @ORM\ManyToMany(targetEntity="Category")
* @ORM\JoinColumn(name="category", referencedColumnName="id")
*/
private $category;
public function getId(): ?int
{
return $this->id;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
public function getCategory()
{
return $this->category;
}
public function setCategory($category): self
{
$this->category = $category;
return $this;
}
public function addCategory(Category $category): self
{
$this->category[] = $category;
return $this;
}
public function __construct()
{
$this->category = new ArrayCollection();
}
}
没有 Animals:Category
实体。您有实体 Animals
和 Category
.
正确答案取决于您使用的是 Symfony 3 还是 4,因为 Symfony 3 使用实体别名(命名空间带有您尝试使用的 :
符号),而 Symfony 4 更喜欢完全限定的命名空间(\App\Entity\Animals
).
因此,第一个错误是在您尝试获取存储库的行中:
getRepository('Animals:Category')
DQL 查询 findByIdJoinedToCategory()
中的第二个:
'SELECT a, b FROM Animals:Category a
JOIN a.category b'
现在解决方案:
Symfony 3
由于看起来您没有任何捆绑包(我猜它是 Symfony 4,但无论如何),您没有任何实体名称空间别名,所以您应该简单地使用它的名称。
getRepository('Animals')
现在,我假设 a
你想引用 Animals
entity/table,所以它应该是
'SELECT a, b FROM Animals a
JOIN a.category b'
Symfony 4
如果您使用 Symfony 4,则应使用实体 FQNS 作为实体名称 (App\Entity\Animals
)。
所以会是
getRepository('\App\Entity\Animals')
或
getRepository(\App\Entity\Animals::class)
获取存储库。第二种更好,因为它会在需要时更容易重构(IDE 将能够找到 class 的用法)。
在查询中它将是
'SELECT a, b FROM App\Entity\Animals a
JOIN a.category b'
或者如果您想避免使用硬编码字符串 class 名称:
'SELECT a, b FROM ' . \App\Entity\Animals:class . ' a
JOIN a.category b'