如果我们在模版里这么干
<?php echo $form->input('last_sold_date',array('autocomplete'=>'off','label'=>false)); ?>
cake会非常‘聪明’的生成三个select的 html标签,内容分别是year,month,day
如果让他不自动转换,只需加上'type'=>'text'
<?php echo $form->input('last_sold_date',array('autocomplete'=>'off','label'=>false,'type'=>'text')); ?>
另外,经测试在cakephp2版本中无此问题。