我想提交一个表单并将值存储在两个不同的表中(位于同一个数据库中)。
这是表格:
<div class="control-group">
<label{% for attrname,attrvalue in attr %} {{attrname}}="{{attrvalue}}"{% endfor %}>Naam</label>
<div class="controls">
{{ form_widget(form.product) }}
{{ form_errors(form.product) }}
</div>
</div>
<div class="control-group">
<label{% for attrname,attrvalue in attr %} {{attrname}}="{{attrvalue}}"{% endfor %}>Aantal</label>
<div class="controls">
{{ form_widget(form.amount) }}
{{ form_errors(form.amount) }}
</div>
</div>
这是表单构建器:
$builder->add("amount", "number", array("label" => "Aantal"));
$builder->add("product", "text", array("attr" => array("autocomplete" => "off", "data-provide" => "typeahead", "data-items" => "15", "data-source" => $dataSource), 'mapped' => false));
$builder->add("price", "number", array("label" => "Aangepaste prijs", 'mapped' => false));
这是实体的一部分:
/**
* @var integer $id
*/
private $id;
/**
* @var integer $amount
*/
private $amount;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set amount
*
* @param integer $amount
* @return BookingEntry
*/
public function setAmount($amount)
{
$this->amount = $amount;
return $this;
}
/**
* Get amount
*
* @return integer
*/
public function getAmount()
{
return $this->amount;
}
这是ORM:
type: entity
table: null
fields:
id:
type: integer
id: true
generator:
strategy: AUTO
amount:
type: float
现在我想在表单中添加一个名为&#39; serial_nr&#39;的输入字段。我想将此值存储在与产品&#39;不同的表中。和&#39;金额&#39;存储在。
中有人能指出我正确的方向吗?
答案 0 :(得分:1)
你有'产品'和'价格'选项'mapped'=&gt; false,所以如果在某个实体上定义了表单,则不保存此值,或者您自己执行此操作。 如果我理解正确,你有表(产品)列:
而不是你想要与列相关的表格(product_serial):
并将此一个与您的表单添加到多个关系中? 您可以通过在表product_serial:
中的doctrine中定义此关系来实现manyToOne:
product:
targetEntity: Product
inversedBy: serials
joinColumn:
name: product_id
referencedColumnName: id
和表产品:
oneToMany:
serials:
targetEntity: ProductSerial
mappedBy: product
并添加到表单集合字段'serials'。
http://symfony.com/doc/current/reference/forms/types/collection.html