我创建了一个用户配置文件,用户可以在其中添加他们的信息。因此,在 URL 部分,我希望他们放置其他链接,例如 Facebook、www.facebook.com/user 等。
但是当我单击不保存任何更新时?
这是用户模型:Models/User.php
<?php
class User extends AppModel {
public $name = 'User';
public $hasMany = array (
'UserWeb'=>array(
'className'=>'UserWeb',
'foreignKey'=>'user_id'
)
);
}
?>
UserWeb 的模型:Models/UserWeb.php
<?php
class UserWeb extends AppModel {
public $name = 'UserWeb';
public $belongsTo = array('User' =>
array('className' => 'User',
'conditions' => '',
'order' => '',
'foreignKey' => 'user_id'
)
);
}
?>
用户控制器:
$this->User->id = $this->Auth->user('id');
if ($this->request->is('post')) {
if ($this->User->save($this->request->data, array('validate' => false))) {
$this->Session->setFlash('Profile updated succsessefully!',
'default', array('class' => 'okmsg'));
$this->redirect($this->request->here);
} else {
$this->Session->setFlash('Profile could not be saved. Please, try again.',
'default', array('class' => 'errormsg'));
}
}
和视图形式:
<?php
echo $this->Form->create();
echo $this->Form->input('UserWeb.title',
array('label'=>false,'placeholder'=>'Title'));
echo $this->Form->input('UserWeb.url',
array('label'=>false,'placeholder'=>'Enter URL'));
echo $this->Form->end('Save');
?>
有人可以帮忙吗?我试图找到解决方案很多时间。当我提交表单时,它不会在 user_webs 表中存储新信息。
顺便说一句,这里是表格:
CREATE TABLE `user_webs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT '0',
`title` varchar(128) DEFAULT NULL,
`url` varchar(128) DEFAULT NULL,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `web` (`user_id`),
CONSTRAINT `web` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8