我的 Symfony 应用程序中有两个模型。第一个是博客:
Blog:
columns:
name: { type: string(20), notnull: true, unique: true }
title: { type: string(255), notnull: true }
description: { type: string(255), notnull: true }
admin_id: { type: bigint, notnull: true }
relations:
User:
class: sfGuardUser
local: admin_id
...
如您所见,此模型与 sfGuardUser 具有一对一的关系。我希望这两个注册以一种形式进行。
所以我更改了 BlogForm 类并embeddedRelation
在其中使用了方法。所以两种形式只是一起出现。问题是他们的观点!用户注册表单(嵌入在 BlogForm 中)看起来像个孩子!我不想要这个......我希望这些字段具有相同的缩进。
我的表单视图是这样的:
但我想要这样的东西:
做这个的最好方式是什么?它与FormFormatter有关吗?