我有一个与UserDetail表相关的User表。
User(#id, name, password)
UserDetail(#id, address, city, user_id)
UserDetail.user_id
是与User.id
链接的外键。
如果我想添加一个新地址,我可以在此处填写地址:
<?php echo $this->Form->create('UserDetail');?>
<?php echo $this->Form->hidden('id'); ?>
<?php echo $this->Form->input('address', array('class' => 'form-control')); ?>
<?php echo $this->Form->input('city', array('class' => 'form-control')); ?>
<?php echo $this->Form->hidden('user_id'); ?>
<?php echo $this->Form->button('Modifier', array('class' => 'btn btn-primary')); ?>
<?php echo $this->Form->end(); ?>
我的控制器:
public function customer_edit($id = null){
if (!$this->User->exists($id)) {
throw new NotFoundException('Invalid user details');
}
if ($this->request->is('post') || $this->request->is('put')) {
$this->request->data['UserDetail']['user_id'] = $id;
if ($this->User->UserDetail->save($this->request->data)) {
$this->Flash->success('Done!');
return $this->redirect(array('action' => 'dashboard'));
} else {
$this->Session->setFlash('Error.');
}
}
}
我总是有闪光灯&#39;错误&#39;。 if ($this->User->UserDetail->save($this->request->data))
不起作用。如果我使用DebugKit查看$request->data
,我将获得所有输入数据。
添加新记录不起作用......问题出在哪里?
感谢。
编辑: 这是我的UserDetail类:
class UserDetail extends AppModel {
public $validate = array(
'id' => array(
'numeric' => array(
'rule' => array('numeric')
),
),
'address' => array(
'notempty' => array(
'rule' => array('notempty'),
'allowEmpty' => false,
),
),
'city' => array(
'notempty' => array(
'rule' => array('notempty'),
'allowEmpty' => false,
),
),
'user_id' => array(
'numeric' => array(
'rule' => array('numeric'),
),
),
);
public $belongsTo = array(
'User' => array(
'className' => 'User',
'foreignKey' => 'user_id',
'conditions' => '',
'fields' => '',
'order' => '',
'counterCache' => true,
'counterScope' => array(),
)
);
}
UserDetail发布数据内容:
&GT; UserDetail
ID
地址测试
城市测试测试
user_id 19
答案 0 :(得分:1)
通常,您不希望为主键Model :: id设置验证规则。但是,如果您这样做,则必须仅在更新记录时强制执行,而不是在创建记录时强制执行(在这种情况下它是空的)。
尝试按如下方式重写验证数组:
public $validate = array(
'id' => array(
'numeric' => array(
'rule' => array('numeric'),
'on' => 'update' //don't enforce rule on create
),
),
'address' => array(
'notempty' => array(
'rule' => array('notEmpty'),
'allowEmpty' => false,
),
),
'city' => array(
'notempty' => array(
'rule' => array('notEmpty'),
'allowEmpty' => false,
),
),
'user_id' => array(
'numeric' => array(
'rule' => array('numeric'),
),
),
);
顺便说一句,在同一规则中'rule' => array('notEmpty')
和'allowEmpty' => false
是多余的。你可以删除后者。
话虽如此,我建议您重新考虑自己的观点和行动,因为他们似乎没有像我想象的那样表现。