我有一个包含域名及其开始日期的表格。我希望当我点击某个域时,可以显示一个用于编辑(更新)的表单,其中的字段填充了当前信息。到目前为止我已经做到了这一点:
class Domains
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="string", length=100)
*/
protected $main_domain;
/**
* @ORM\Column(type="date", nullable=true)
*/
protected $start_date;
...每个属性都有setter和getter。
我创建了一个用于构建表单的EditType类:
public function buildForm(FormBuilder $builder, array $options)
{
$builder->add('start_date', 'date', array('widget' => 'single_text', 'format' => 'yyyy-MM-dd'));
}
使用getName()方法,这就是EditController的问题:
class EditController extends Controller
{
/**
* @Route("/fc/edit/{id}")
*/
public function editAction($id, Request $request)
{
$domain = $this->getDoctrine()
->getRepository('AcmeAbcBundle:Domains')
->find($id);
if (!$domain)
{
throw $this->createNotFoundException('No domians found');
}
$form = $this->createForm(new EditType(), $domain);
if($request->getMethod() != 'POST')
{
return $this->render('AcmeAbcBundle:Edit:form.html.twig', array(
'id'=>$id, 'domain'=>$domain, 'form' => $form->createView() ));
}
if ($request->getMethod() == 'POST')
{
$form->bindRequest($request);
print_r($request);
if ($form->isValid())
{
$em = $this->getDoctrine()->getEntityManager();
$domain = $em->getRepository('AcmeAbcBundle:Domains');
if (!$domain)
{
throw $this->createNotFoundException('There is no such domain');
}
$domain->setStartDate($request->getStartDate());
$em->flush();
}
return $this->redirect($this->generateUrl('homepage'));
}
我不知道它应该如何:(我尝试了一些东西,但它们似乎没有用。
$domain->setStartDate($request->getStartDate());
这里没有找到方法,如果是$ request-> start_date它找不到属性......
答案 0 :(得分:2)
要获取start_date POST参数,您需要执行以下操作:
$request->request->get('start_date');
还要注意这些行
$em = $this->getDoctrine()->getEntityManager();
$domain = $em->getRepository('AcmeAbcBundle:Domains');
if (!$domain)
{
throw $this->createNotFoundException('There is no such domain');
}
后
if ($form->isValid())
是不必要的,因为您已经在函数中进一步获得了域对象。实际上它们是错误的,因为你没有获得任何域对象,而是获得了entityrepository。