在 CakePHP 中使用 $form->inputs() 时指定日期格式
我想知道是否有一种方法可以在使用 CakePHP 的 $form->inputs(); 创建的表单中指定日期格式。请注意,这不是单独的 $form->input() ,而是 $form->inputs() ,它将自动创建整个表单字段。
任何意见将不胜感激。谢谢。
I am wondering if there is a way to specify the date format in the forms created using CakePHP's $form->inputs(); Please note that this is not the individual $form->input() but instead $form->inputs() that will create the whole form fields automagically.
Any input will be appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将常用选项传递到
$form->;输入
,您将传递到$form->input
。例如,如果您想自定义下面的
field2
,请将字段名称作为键,将选项数组作为值:You can pass the usual options into
$form->inputs
that you would pass into$form->input
.For example, if you want to customise
field2
below, you make the field name the key and the options array the value: