Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是否在控制器中创建一个新实体并使用我在 $POST 上收到的内容设置所有字段,或者有自动执行此操作的方法?
您的帖子信息有点稀缺,但通常,是的,您必须隐式创建一个新实体
$entity = new Entity; $entity->setFoo($bar); $this->entityManager->persist($entity); $this->entityManager->flush();