我想请一些帮助。我有一个帖子页面,有完整的帖子和下面的帖子一个小的形式添加评论。帖子页面的URI是:site/posts/1,因此它位于posts控制器中,表单操作为form_open(site_url('comments/add/'.$post->post_id))
。
这是我的add()函数里面的注解控制器:
public function add($post_id){
// if nothing posted redirect
if (!$this->input->post()) {
redirect(site_url());
}
// TODO: save comment in database
$result = $this->comment_model->add($post_id);
if ($result !== false) {
redirect('posts/'.$post_id);
}
// TODO:load the view if required
}
这是注解模型中的add()函数
public function add($post_id){
$post_data = array(
'post_id' => $post_id,
'username' => $this->input->post('username'),
'email' => $this->input->post('email'),
'comment' => $this->input->post('comment')
);
if ($this->validate($post_data)) {
$this->db->insert('comments', $post_data);
if ($this->db->affected_rows()) {
return $this->db->insert_id();
}
return false;
} else {
return false;
}
}
我想做的是如果$result = $this-〉评论模型-〉add($post_id);验证失败,在我的帖子视图中显示验证错误,否则插入评论并重定向到相同的帖子页面(site/posts/1)。
问题是,当我点击submit时,表单操作进入comments/add/1,正如预期的那样,但没有执行上述任何操作。
我该怎么办?”
EDIT我对代码做了一个小的修改,去掉了“令人困惑的”validate()函数。也许这更有帮助。
注解控制器:
public function add($post_id){
// if nothing posted redirect
if (!$this->input->post()) {
redirect(site_url());
}
// TODO: save comment in database
$this->form_validation->set_rules($this->comment_model->rules);
if ($this->form_validation->run() == true) {
echo "Ok! TODO save the comment.";
// $this->comment_model->add($post_id);
// redirect('posts/'.$post_id);
} else {
echo "Validation Failed! TODO: show validation errors!";
}
// TODO:load the view if required
}
注解模型:
public function add($post_id){
$post_data = array(
'post_id' => $post_id,
'username' => $this->input->post('username'),
'email' => $this->input->post('email'),
'comment' => $this->input->post('comment')
);
$this->db->insert('comments', $post_data);
if ($this->db->affected_rows()) {
return $this->db->insert_id();
}
return false;
}
1条答案
按热度按时间dgsult0t1#
您需要将
validation_errors()
传递回您的Posts
控制器。目前,当您在add
函数中执行重定向时(当验证失败时),您会丢失抛出的验证错误。我会考虑使用
flashdata
(http://ellislab.com/codeigniter/user-guide/libraries/sessions.html)将一个成功/错误消息从Comments
控制器传递回Posts
控制器。注解控制器:
岗位管理员:
帖子查看次数:
可能不是完美的,但希望它能有所帮助...