我有这个问题..我无法验证表单的 2 个字段并使用 SaveField 保存数据但无法验证.. 检查代码:
Archivo.php(模型)
<?php
class Archivo extends AppModel
{
var $name = 'Archivos';
public $validate = array(
'mes' => array(
'rule' =>
array('multiple', array(
'min' => 1
)
),
'message' => 'Debe Seleccionar Una (1) Opción',
'required' => true,
),
'ano' => array(
'rule' =>
array('multiple', array(
'min' => 1
)
),
'message' => 'Debe Seleccionar Una (1) Opción',
'required' => true,
),
);
}
?>
档案控制器
<?php
class ArchivosController extends AppController{
var $name = 'Archivos';
var $helpers = array('Html','Form');
//var $scaffold;
.
.
.
function add(){ ###FORMULARIO PARA SUBIR ARCHIVOS DE TEXTO AL SISTEMA
$this->Archivo->create();
#### SI LA INFORMACION ENVIADA ES 'POST' SE PROCEDE A TRABAJAR CON EL ARCHIVO SINO CREARA UN FORMULARIO EN BLANCO
if ($this->request->is('post')) {
debug($this->request->data);
##### DEL POST SE VERIFICA SI EL ARCHIVO TIENE ALGUN FALLO O SI NO TIENE NADA
if( $this->data['Archivo']['archivo']['error'] == 0 && $this->data['Archivo']['archivo']['size'] > 0){
// Informacion del tipo de archivo subido $this->data['Upload']['archivo']['type']
####DONDE SE GUARDARAN LOS ARCHIVOS SUBIDOS
$destino = WWW_ROOT.'files'.DS;
##### MOVEMOS EL ARCHIVO DE LA CARPETA TEMPORAL A LA RUTA SELECCIONADA ($DESTINO),
##### EN BASE DE DATOS SOLO SE GUARDARA LA RUTA, EL MES Y EL AÑO DEL ARCHIVO
if(move_uploaded_file($this->data['Archivo']['archivo']['tmp_name'], $destino.$this->data['Archivo']['archivo']['name'])){
$this->Archivo->saveField('ruta', $destino.$this->data['Archivo']['archivo']['name']);
$this->Archivo->saveField('mes', $this->data['Archivo']['mes'], true);
$this->Archivo->saveField('ano', $this->data['Archivo']['ano']['year'], true);
$this->Session->setFlash(__('Archivo Guardado'));
}else{
$this->Session->setFlash(__('El archivo no se pudo subir, por favor intentelo de nuevo'));
}
$this->redirect(array('action' => 'index'));
}else{
$this->Session->setFlash(__('Error al intentar subir el archivo'));
}
}
}
}
?>
添加.ctp
<?php echo $this->Form->create('Archivo', array('type' => 'file'));?>
<fieldset>
<legend>Añadir Nuevo Archivo</legend>
<?php
//echo $this->Form->input('mes',array('type'=>'date'));
echo $this->Form->input('mes', array(
'options'=>array(
'Enero'=>'Enero',
'Febrero'=>'Febrero',
'Marzo'=>'Marzo',
'Abril'=>'Abril',
'Junio'=>'Junio',
'Agosto'=>'Agosto',
'Septiembre'=>'Septiembre',
'Octubre'=>'Octubre',
'Noviembre'=>'Noviembre',
'Diciembre'=>'Diciembre'),
'empty'=>'(Seleccione un Mes)',
'label'=>'Mes'
)
);
//echo $this->Form->year('ano','2013',date('Y'),array('empty'=>'(Seleccione un Año)','label' =>'Año'));
echo $this->Form->input('ano', array(
'type' => 'date',
'dateFormat' => 'Y',
'minYear' => date('Y'),
'maxYear' => date('Y') + 1,
'label' => 'Año',
'empty' => '(Seleccione un Año)',
//'default' => date('Y')
));
echo $this->Form->input('archivo',array('type' => 'file','label'=>''));
//echo $this->Form->input('valido', array('checked'=>'true'));
?>
</fieldset>
<?php echo $this->Form->end('Enviar') ?>
<?php echo $this->Html->link('Mostrar Todos Los Archivos',array('action'=>'index')); ?>
无法验证的字段是“mes”和“ano”并保存数据
$this->Archivo->saveField('mes', $this->data['Archivo']['mes'], true); $this->Archivo->saveField('ano', $this->data['Archivo']['ano']['year'], true);
我试着把这样的代码
$this->Archivo->saveField('ano', $this->data['Archivo']['ano']['year'], array('validate' => true));
但不起作用
请帮忙,谢谢