2
Slim FrameworkとDoctrineを使用しているので、新しいデータを正常に挿入するたびにjsonレスポンスを返す必要がありますが、すべてが機能しています。私のコードは:Slim Framework Doctrine json出力
$now = new \DateTime('now');
$people->setCreatedOn($now);
$people->setModifiedOn($now);
$people->setCreatedBy($this->engine->getCurrentUser()->getUserId());
$people->setModifiedBy($this->engine->getCurrentUser()->getUserId());
$this->em->persist($people);
$this->em->flush($people);
$person = $this->em->getRepository('App\Entities\EibPerson')->findOneBy(array('personId' => $people->getPersonId()));
return $response->withJSON($person->getArrayCopy());
データは正常に挿入されていますが、応答は表示されませんjson。私はここで何か間違っていますか?