Symfony2 - 管理用户的好方法
我正在使用 Symfony 2 启动一个新项目,我必须创建和管理一些具有许多个人信息的用户。 我必须决定选择一种方式来管理我们,并且我希望收到一些关于选择 Symfony 2 基本实现或 FOSUserBundle 的建议。
I'm starting a new project with Symfony 2 and I have to create and manage some users with many personnal informations.
I must decide to chose a way to manage us and i wish receive some advice for chose Symfony 2 basic implementation or FOSUserBundle for example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 FOSUserBundle。它易于安装和配置。
在最基本的层面上,它可以让您通过数据库轻松处理用户存储和身份验证。它要求您的用户实体符合其某些“标准”,但之后您可以自由地按照您认为合适的方式编写用户实体。
AFAIK,它也是 Symfony2 目前最流行的用户管理解决方案,因此您应该能够轻松地在线找到它的资源/信息。
Use FOSUserBundle. It's easy to install and configure.
At the most basic level, it lets you easily handle user storage and authentication through the database. It requires that your user entity conform to some of its 'standards', but after that you're free to write your user entity how you see fit.
AFAIK, it's also the most popular user management solution for Symfony2 right now, so you should be able to easily find resources/information for it online.