我创建了简单的表单,允许用户输入注释。但我想要实现的是为特定用户保存到数据库的注释(假设用户ID)我不知道如何做到这一点。这就是我所做的:
function some Controller(){
$baza = new baza();
$em = $this->getDoctrine()->getManager();
$em->persist($baza);
$comment = $this->createFormBuilder($baza)
->add('comment', 'text')
->getForm();
if ($request->getMethod() == 'POST') {
$comment->bind($request);
if ($comment->isValid()) {
$em->flush();
echo "your comment have been submited";
}
return $this->render('AcmeWebBundle:Default:index.html.twig'
,array('users' => $users
,'count' => $total
,'comment' => $comment->createView()
));
}
但是这样就不会为特定用户保存注释,而是创建数据库中的新行:/
另外还有twig代码:
{% extends 'AcmeWebBundle:Default:master.html.twig' %}
{% block strana %}
<h3>Total users: {{ count }} </h3>
{% endblock %}
{% block body %}
<h1> Recently booked</h1><br></br>
{% for user in users %}
<strong><em>{{ user.username}}</em></strong><p> From : <b>{{ user.from }}</b> To : <b>{{ user.to }}</b><br></br>
Car: <b>{{ user.car}}</b> Leaving on : <b>{{ user.date }}</b><br><br>
Price: <b>{{ user.price }} </b><br></br>
Comments:<br></br> {{ user.comment }} //* first to display all the comments, and than add another one *//
<br><br>
<form action="{{ path('acme_web_homepage') }}" method="post" {{ form_enctype(comment) }}>
{{ form_widget(comment) }}{{ form_widget(comment['comment']) }}
{{ form_rest(comment) }}
<input type="submit" value=" New Comment" />
</form>
<br><br>-------------------------------
</p>
{% endfor %}{% endblock %}
对于第一个用户,评论正文的空字段也只显示一次......谢谢你们。
答案 0 :(得分:1)
与第1项有关:
form->bind($request);
将表单中的数据放入实体中;因此你需要在绑定后持久化。尝试:
$baza = new baza();
$em = $this->getDoctrine()->getManager();
$em->persist($baza);
$comment = $this->createFormBuilder($baza)
->add('comment', 'text')
->getForm();
if ($request->getMethod() == 'POST') {
$comment->bind($request);
if ($comment->isValid()) {
$em->persist($baza); // Lighthart's change
$em->flush();
echo "your comment have been submited";
}
此外,为什么你会坚持一个空对象并不明显,但这并不是一个坏主意。
如果没有看到控制器代码,第二项无法解决,我建议您提交一个新问题,以便串扰不会淡化答案。