我有一张包含域及其开始日期的表格。我希望当我点击一个域时,显示一个编辑(更新)表单,其字段填充了当前信息。到目前为止,我已经做到了:
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;
...每个属性都有设置器和获取器。
我创建了一个 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 它没有找到属性...