我正在使用带有Bootstrap和ReverseForm适配器的Zend框架,并且有一个有趣的问题:当我在Zend Form中使用Bootstrap Datepicker时,我有下一个例外:
Object provided to Escape helper, but flags do not allow recursion
有我的形式代码:
use \Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
use \Zend\Form\Annotation as ZFA;
...
/**
* @var \DateTime
*
* @ODM\Date
*
* @ZFA\Type("ReverseForm\Element\BootstrapDatepicker")
* @ZFA\Attributes({"type":"text"})
* @ZFA\Options({
* "label":"Date",
* "extended": {
* "help": {"content": ""},
* }
* })
*
*/
private $date;
并且有我的反向表格配置:
'ReverseForm\Element\BootstrapDatepicker' => array(
'js' => array(
'/vendor/datepicker/js/bootstrap-datepicker.js'
),
'css' => array(
'/vendor/datepicker/css/datepicker.css'
),
'template' => 'input.phtml',
'inlineJs' => "$('#%1\$s').datepicker(%2\$s);",
'inlineJsConfig' => array(
'format' => 'dd.mm.yyyy',
'weekstart' => new \Zend\Json\Expr(1),
)
),
我哪里弄错了?
答案 0 :(得分:5)
我有同样的问题。将输入的类型从text
更改为date
可以解决您的问题。
(https://github.com/zendframework/zf2/issues/3724)
答案 1 :(得分:1)
没有错误显然来自你的代码或者如果是editAction不仅仅是绑定而且添加:
$form->bind($document);
$form->get('datenais')->setValue($document->getDatenais()->format('Y-m-d'));
我不知道干净的方式,但它会解决你的问题。如果你找到另一种方式,我会很高兴看到你的代码。
答案 2 :(得分:0)
如果你没有将类型字段添加到Zend表单,那么它与你得到的问题类似:
'type' => 'Zend\Form\Element\Time',
整个元素就是这样::
$this->add(array(
'name' => 'officialDrawTime',
'type' => 'Zend\Form\Element\Time',
'attributes' => array(
'required' => 'required',
'type' => 'time',
'class' => 'form-control input-large',
'placeholder' => 'e.g 19:30 or 07:30 (24 hour clock)',
'pattern' => '^[0-9]{2}:[0-9]{2}$'
),
'options' => array(
'label' => 'Official draw time',
'instructions' => 'The official draw time...)'
),
));
答案 3 :(得分:0)
这对我有用。
转换为日期格式的值将解决问题
在你的控制器中:写:
$users['usrBirthday']=$user->getBirthday()->format('d-m-Y');
$form->setData($users);
$form->bind($user);