我在编码方面遇到了问题。当我向您发送表单并保存到数据库时,会出现如下消息:
Catchable fatal error: Argument 1 passed to ITTBundle\Entity\Student::setFormClass() must be an instance of ITTBundle\Entity\FormClass, integer given, called in C:\Users\Rivan\Documents\DigitalSchoolBase\Symfony2\src\ITTBundle\Controller\ConfigureController.php on line 601 and defined in C:\Users\Rivan\Documents\DigitalSchoolBase\Symfony2\src\ITTBundle\Entity\Student.php on line 901
这是我的代码:
$findclass = $this->getDoctrine()
->getRepository('ITTBundle:FormClass')
->findOneBy(array('class_level' => $classlevel->getId(), 'letter' => $letter, 'class_major' => $classmajor->getId()));
//print_r($findclass->getId()); exit;
if( empty($error_message) )
{
If ($findclass)
{
$em = $this->getDoctrine()->getManager();
$students->setFormClass($findclass->getId());
$em->persist($students);
$em->flush();
}
}
我想知道这个问题是哪个。我的另一个编码,这个工作方式很好,但是当我的编码不能使用这个方法时,我很困惑。
答案 0 :(得分:4)
从您提供的示例中,我假设这是行601
,它触发致命错误:
$students->setFormClass($findclass->getId());
我假设方法调用\ITTBundle\Entity\Student::setFormClass()
需要类型为\ITTBundle\Entity\FormClass
的对象。您正在从数据库返回一个实体,但是然后您将显式传递对象的id - 这是一个整数 - 而不是FormClass
对象本身。
试试这个:
$students->setFormClass($findclass);
我们只能确定您是否向我们展示了\ITTBundle\Entity\Student::setFormClass()
的方法签名,但这是我半受教育的假设。鉴于方法调用本身是为意外的参数类型抛出错误,我假设方法参数是键入的,所以我猜它可能看起来像这样:
public function setFormClass(\ITTBundle\Entity\FormClass $formClass)
{
$this->formClass = $formClass;
}
希望这会有所帮助:)