Symfony 管理生成器
我有一个表 A->Users ,它有一个使用 symfony 管理生成器生成的后端;我也有过滤器和表格。有没有一种方法可以通过 get/post 请求过滤我调用 backend_dev.php/users 时出现的记录,按其字段之一(即 id 字段)?
I have a table A->Users that has a backend generated with symfony admin generator; I have filters and forms too. Is there a way to filter by a get/post request the records that appear when I call backend_dev.php/users, by one of its field (i.e. id field)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是 Propel 还是 Doctrine?如果你想要用户的子集,你必须将以下内容添加到你的generator.yml(在users文件夹内):
我的意思是默认行为是选择全部,使用peer_method你告诉symfony使用你的自定义方法。请记住在用户模型中实现 YOURFUNCTION。
这适用于 propel,Doctrine 用户检查此链接:
Doctrine table_method
Are you using Propel or Doctrine? If you want a subset of the users you have to add the following to your generator.yml (inside users folder):
I mean the default behavior is to select all, using peer_method you tell symfony to use your custom method. Remember to implement YOURFUNCTION inside users model.
This works for propel, Doctrine users check this link:
Doctrine table_method