我是 CakePHP 的新手。我的观点有两个问题。
文本字段名称和文本字段区域之间有换行符。我试图通过
'div' => false
,但没有奏效。如何删除换行符并在同一行显示?我已在此文本字段中添加了验证规则,但是当我单击保存时,错误消息未显示。
validates
除了添加我的模型之外,我还需要做其他事情吗?
这是我的看法input.ctp
echo $this->Form->input('fileId', array(
'type'=>'text',
'style' => 'width: 200px; height: 15px'
));
echo $this->Form->end('Save Post');
这是我的模型:
var $validate = array(
'fileId' => 'notEmpty',
'message' => 'Should not be empty'
);
控制器:
if ($this->request->is('post')) {
$data = $this->request->data;
if ($data) {
// saving the data
}
}