我想下面的場景:Symfony2,如何將隱藏日期類型字段添加到表單?
在myclassType
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('day','hidden')
->add('date', 'hidden')
->add('hours')
->add('comment','textarea')
;
}
在myclass
class myclass
{
//.. Other stuff
/**
* @ORM\Column(type="date")
*
* @var date $date
*/
protected $date;
}
雖然渲染我得到這個錯誤:
An exception has been thrown during the rendering of a template ("Catchable Fatal Error:
Object of class DateTime could not be converted to string in
C:\wamp\www\PMI_sf2\app\cache\dev\twig\fb\40\8957f80f2358a6f4112c3427b387.php line 684") in
form_div_layout.html.twig at line 171.
任何想法如何讓日期類型字段隱藏!??
出於興趣,爲什麼要隱藏呢?什麼是用例? – Flukey