我需要一些帮助。我有一个包含完整帖子的帖子页面,在帖子下方有一个用于添加评论的小表格。帖子页面的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->comment_model->add($post_id); 验证失败以在我的帖子视图中显示验证错误,否则插入评论并重定向到同一帖子页面(站点/帖子/1)。
问题是,当我点击提交时,表单操作按预期进入评论/添加/1,但没有执行上述任何操作。
任何想法我该如何解决这个问题?
编辑 我对代码做了一个小的改动,没有“令人困惑”的 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;
}