【发布时间】:2013-07-01 20:25:56
【问题描述】:
FormHelper 有没有办法在模型中定义的规则的输入标签中生成 HTML5 验证属性?
例如
在模型中
var $validate = array(
'title' => array(
'message' => 'This field cannot be left blank',
'required' => true
)
);
在视图中
echo $this->Form->input('title');
浏览器中的 HTML
<input type="text" title="This field cannot be left blank" required />
【问题讨论】: