Symfony 管理生成器

发布于 2024-11-09 07:42:31 字数 136 浏览 4 评论 0原文

我有一个表 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

动听の歌 2024-11-16 07:42:31

您使用的是 Propel 还是 Doctrine?如果你想要用户的子集,你必须将以下内容添加到你的generator.yml(在users文件夹内):

config:
  --your config
  list:
    peer_method: YOURFUNCTION

我的意思是默认行为是选择全部,使用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):

config:
  --your config
  list:
    peer_method: YOURFUNCTION

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文