我在Symfony2项目中使用FosUserBundle和SonataUserBundle。
我现在很困惑。我想为实体用户添加字段,但它不起作用。例如,架构没有更新。
这是我的配置:
AppKernel:
...
new FOSUserBundleFOSUserBundle(),
new SonataUserBundleSonataUserBundle(),
new ApplicationSonataUserBundleApplicationSonataUserBundle('FOSUserBundle')
config.yml:
...
# FOSUserBundle Configuration
fos_user:
db_driver: orm # BDD type
firewall_name: main # firewall name
user_class: ApplicationSonataUserBundleEntityUser # entity class defined
以及添加了字段的用户实体,在应用程序/应用程序/Sonata/userBundle/Entity/
namespace ApplicationSonataUserBundleEntity;
use SonataUserBundleEntityBaseUser as BaseUser;
/**
* This file has been generated by the Sonata EasyExtends bundle ( http://sonata- project.org/easy-extends )
*
* References :
* working with object : http://www.doctrine-project.org/projects/orm/2.0 /docs/reference/working-with-objects/en
*
* @author <yourname> <youremail>
*/
class User extends BaseUser
{
/**
* @var integer $id
*/
protected $id;
/**
* @var string
*/
protected $institution;
/**
* @var string
*/
protected $department;
/**
* @var string
*/
protected $city;
/**
* @var string
*/
protected $country;
/**
* Get id
*
* @return integer $id
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getInstitution()
{
return $this->institution;
}
/**
* @return string
*/
public function getDepartment()
{
return $this->department;
}
/**
* @return string
*/
public function getCity()
{
return $this->city;
}
/**
* @return string
*/
public function getCountry()
{
return $this->country;
}
}
在我的数据库中,表fos_user_user似乎是包含用户保存数据的表。
调用"php app/console doctrine:schema:update --force"时不会创建添加的字段(国家/地区、城市...)。如何向用户实体添加字段?我迷失在fosuserbundle和sonatauserbundle中。
事实上,我使用 fos 和 sonata 用户包的方式似乎迫使我使用 XML 定义。因此,例如添加一个名为"city"的字段,您必须添加以下行:
User.php (in/app/Application/Sonata/UserBundle/Entity/) :
protected $city;
User.orm.xml (in/app/Application/Sonata/UserBundle/Ressource/config/doctrine/) :
<field name="city" column="city" type="text"/>
也许将其放在捆绑包的文档中对于新手来说会很有趣;)
如果你想使用注释,我找到了更好的解决方案。
删除UserBundle/Resorces/config/doctrine
文件夹,您可以在UserBundle/Entity
文件夹中使用注释