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.
我正在开发一个简单的网站,只有一些文字。文本需要用户可编辑,因此我将文本存储在数据库中。因此,我需要从每个捆绑包中访问我的 Doctrine 实体,那么我需要在哪里编写该实体?
谢谢
如果您使用命名空间,您的所有实体都可以在您的应用程序中访问。
例如,只需Your\WhateverBundle\Entity\Myentity在您必须添加的每个控制器处创建它:use Your\WhateverBundle\Entity\Myentity;
Your\WhateverBundle\Entity\Myentity
use Your\WhateverBundle\Entity\Myentity;
我想这就是你要找的,不是吗?