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.
我有:Symfony 2、UserBundle(没有控制器,只有 Entities User、Roles 和未使用的实体 Data )。
我想要(控制器): $user = $this->getUser(); // 返回一个用户对象 (\UserBundle\Entity\User) $user->getData(); // User 对象中有一个自定义方法从数据库中获取数据(例如表 UserData)
我怎样才能做到这一点?
我的“getData”函数应该在哪里?
Imo,您应该覆盖 User 实体并将 oneToMeny 添加到 UserData 实体。如我错了请纠正我