私は Symfony2 の初心者です。私の問題は、Twig フォームからデータベースに値を渡したいということです。コントローラ:
public function createAction()
{
$product = new Product();
$product->setName('name');
$product->setPrice('price');
$product->setDescription('description');
$em = $this->getDoctrine()->getEntityManager();
$em->persist($product);
$em->flush();
return new Response('Izveidots produkts id '.$product->getId());
}
定数値 (「名前」、「価格」) を使用する代わりに、フォームの値を使用したいと考えています。景色:
<form action="{{ path('blogger_blog_create') }}" method="post" {{ form_enctype(form) }}>
{{ form_errors(form) }}
{{ form_row(form.name)}}
{{ form_row(form.price) }}
{{ form_row(form.description) }}
{{ form_rest(form) }}
<input type="submit" />
</form>
私は数時間それを理解しようとしています。