symfony 管理生成器 table_method

发布于 2024-09-14 16:30:11 字数 159 浏览 9 评论 0原文

配置管理生成器时,我为列表视图创建了一个 table_method 以便加入正确的表等。

但是,在我的编辑帖子/创建帖子部分中,我有一个相当广泛的下拉列表,目前尚未加入。在这些情况下是否可以使用与 table_method 等效的方法来指定用于检索记录的方法?

提前致谢。

When configuring my admin generator I created a table_method for my list view in order to join the correct tables and so on.

However, in my edit post / create post sections I have a rather extensive dropdown that is not joined at the moment. Is there an equivalent to table_method that I can use for these situations to specify the method that should be used for retrieving the record?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

囍孤女 2024-09-21 16:30:11

您需要修改表单类中的相应小部件。 (lib/form/doctrine 中的 SomeModelForm.class.php)。

所有 Doctrine 小部件都接受“query”选项,以允许您传递 Doctrine 查询来覆盖表单创建的默认查询,或者接受“table_method”选项,该选项可以返回查询或学说集合以覆盖表单创建的默认查询。默认。

作为参考,请参阅:http://www.symfony-project.org/api/ 1_4/sfWidgetFormDoctrineChoice

要使用查询,请执行以下操作:

$somedoctrinequery = Doctrine::getTable('ModelName')->createQuery('t')->leftJoin('t.Relation r');
$this->widgetSchema['field_name']->setOption('query', $somedoctrinequery);

或者使用 table_method:

$this->widgetSchema['field_name']->setOption('table_method', 'myMethod');

You need to modify the respective widget in the form classes. (SomeModelForm.class.php in lib/form/doctrine).

All of the Doctrine widgets accept a "query" option to allow you to pass a Doctrine query to over-ride the default query the form creates, or a "table_method" option that can return a query or a doctrine collection to over-ride the default.

As a reference, see: http://www.symfony-project.org/api/1_4/sfWidgetFormDoctrineChoice

To use query, something along the lines of:

$somedoctrinequery = Doctrine::getTable('ModelName')->createQuery('t')->leftJoin('t.Relation r');
$this->widgetSchema['field_name']->setOption('query', $somedoctrinequery);

Or to use table_method:

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