当我在symfony中使用find()方法时,我遇到了问题:
PDOException:SQLSTATE [42S22]:找不到列:1054'on子句'中的未知列't10.id'
只有一个特定的Entity才能正常工作。
这是我的代码:
$classeId = $_POST['classeid'];
$repo = $this->getDoctrine()->getRepository(Classe::class);
$classe = $repo->find($classeId);
和我的实体:
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\ClasseRepository")
*/
class Classe
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Formation", inversedBy="classe")
*/
private $formation;
/**
* @ORM\OneToOne(targetEntity="App\Entity\Calendar", mappedBy="classe", cascade={"persist", "remove"})
*/
private $calendar;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\person", inversedBy="classes")
*/
private $responsable;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getFormation(): ?Formation
{
return $this->formation;
}
public function setFormation(?Formation $formation): self
{
$this->formation = $formation;
return $this;
}
public function __toString() {
return $this->name;
}
public function getCalendar(): ?Calendar
{
return $this->calendar;
}
public function setCalendar(?Calendar $calendar): self
{
$this->calendar = $calendar;
// set (or unset) the owning side of the relation if necessary
$newClasse = $calendar === null ? null : $this;
if ($newClasse !== $calendar->getClasse()) {
$calendar->setClasse($newClasse);
}
return $this;
}
public function getResponsable(): ?person
{
return $this->responsable;
}
public function setResponsable(?person $responsable): self
{
$this->responsable = $responsable;
return $this;
}
}
我搜索了该错误,但是大多数帖子都说是错误,因为主键不是id,但在我的情况下,主键是id。我也尝试使用findBy()方法获取对象,并使用其他参数(而不是id),但是出现了相同的错误。 我的完整代码:
类:http://www.pastebin.com/r7hREPYD,存储库:http://www.pastebin.com/Mp118dQt,控制器:http://www.pastebin.com/q29UnyGd
答案 0 :(得分:1)
尝试使用namespace
查找:
$classeId = $_POST['classeid'] ?? 1;
OR
$classeId = $request->request->get('classeid', 1)
; //默认情况下,您的ID = 1
$this->getDoctrine()->getRepository(App\Entity\Classe::class)->find($classeId);
您是否更新了database
:
doctrine:schema:update
此后重试。
答案 1 :(得分:1)
首先,您不必直接使用$ _POST,但必须使用那样的Request。
public function foo(Request $request): void {
$classId = $request->request->get('classId');
$classe = $this->getDoctrine()
->getRepository(Product::class)
->find($classId);
...
}
也许您的未消毒身份证是问题所在。
您可以尝试使用类的存储库作为形式参数来编写方法。
public function foo(Request $request, ClasseRepository $repoClass): void {
$repoClass->find($request->request->get('classId'));
...
}
我建议您使用一个硬编码来强制使用“ classId”。
$repoClass->find(1); // where 1 is a db you watched from db directly.
或
$repoCLass->findOneBy(['id'=> 1]); // where 1 is a well known unique identifier.
答案 2 :(得分:1)
使用Symfony 4的方式是错误的。
不建议直接使用$_POST
,$_SERVER
等。
您的newcalendar
函数应为:
public function newcalendar(Request $request, JobRepository $jobRepository, ClasseRepository $classeRepository) {
$user=$this->getUser();
if($user) {
$currentStep=$user->getStep();
// Custom query result could be optimised
$jobId=$this->getJobId($user->getId())[0]['job_id'];
// Use Job repository instead
// $repo = $this->getDoctrine()->getRepository(Job::class);
$job=$jobRepository->find($jobId);
//Do not override your object, create a new varaible instead, or use getter directly
// $job=$job->getName();
if($currentStep < 10) {
return $this->redirectToRoute("registration$currentStep");
}
if($job->getName() == 1 || $job->getName() == 'admin' || $job->getName() == "responsable de formation" || $job->getName() == "consseiller") {
// Do not use $_SERVER directly, may cause issues with fragments
// if ($_SERVER['REQUEST_METHOD'] === 'POST') {
if($request->isMethod('POST')) {
// Same reason as $_SERVER
$calendar=new Calendar();
// $calendar->setStartDate($_POST['start']);
$calendar->setStartDate($request->request->get('start'));
// $calendar->setEndDate($_POST['end']);
$calendar->setEndDate($request->request->get('end'));
// $calendar->setEvent($_POST['event']);
$calendar->setEvent($request->request->get('event'));
// $classeId=$_POST['classeid'];
$classeId=$request->request->get('classeid'); // Not used
// Uncomment to check this value
// dump($request->request->get('classeid'));
// exit();
// Use Classe repository instead
// $repo=$this->getDoctrine()->getRepository(Classe::class);
// $classe=$repo->find($request->request->get('classeid'));
$classe=$classeRepository->find($request->request->get('classeid'));
//check if not null
if($classe) {
$calendar->setClasse($classe);
$em=$this->getDoctrine()->getManager();
$em->persist($calendar);
$em->flush();
}
return $this->redirectToRoute('calendar');
}
return $this->render("formation/newcalendar.html.twig");
} else {
return $this->render("dashboard/index.html.twig", array(
'controller_name'=>'DashboardController',
));
}
}
// Could be handled by firewall
return $this->redirectToRoute('security_login');
}
我在代码中留下了一些评论。
关于此功能的最后一行,强制登录可以由config/packages/security.yaml
中的Symfony防火墙处理
Symfony Security
Symfony access control
请先更正您的代码。
您会注意到我在代码中留下了一个转储,将其取消注释,并检查classeid
是否为有效值。
查看“异常”日志,很可能是您出错的原因
[编辑] 为了确保安全,请运行以下命令:
php bin/console make:migration
php bin/console doctrine:migrations:migrate
答案 3 :(得分:0)
请尝试编写存储库功能。只是为了了解问题。
public function findThisDamnId(int $id): array {
$qb = $this->createQueryBuilder('c')
->where('c.id > :val')
->setParameter('val', $id)
->getQuery();
return $qb->execute();
}
或尝试使用SQL标准
public function getThisDamnClassFromId(int $Id): array {
$conn = $this->getEntityManager()->getConnection();
$sql = '
SELECT * FROM classe c
WHERE c.id > :val';
$stmt = $conn->prepare($sql);
$stmt->execute(['id' => $id]);
return $stmt->fetchAll();
}
答案 4 :(得分:0)
错误来自与实体的不良关联。因此,我删除了实体和所有关联,并重新创建了类,现在可以正常工作了。