我正在使用 CodeIgniter 构建我的网站的 jquery 移动版本。但是我的重定向有问题。
例如:我在页面«listComment»上,我想添加评论。当我添加它时,函数« AddComment » 被启动并且在这个函数中我被重定向到« listComment »。但我不知道为什么我在页面上:www.mysite.com/mycontroller/AddComment 而不是 www.mysite.com/mycontroller/listComment。我看不到添加的评论,如果我刷新我有很多错误,因为我不在好页面上。
我真的希望有人可以帮助我,我不明白为什么重定向在我的 Iphone 上不起作用,当我在我的电脑上尝试移动版本时它起作用。
这是我使用的代码,但我不知道问题出在哪里,因为代码在我的计算机上运行良好:
<?php function add_comment_unite()
{
$data['users_online'] = $this->get_users_online();
$data['uniteName'] = $this->uniteName();
$data['numberInvit'] = $this->numberInvit();
$data['friends'] = $this->get_friends_unite();
$this->form_validation->set_rules('texte_comment_unite','Commentaire','trim|required|xss_clean');
if($this->form_validation->run())
{
$texte_comment_unite = $this->input->post('texte_comment_unite');
$id_space_unite = $this->input->post('id_news_u');
$id_membre = $this->session->userdata('id_membre');
$id_unite = $this->session->userdata('id_unite');
$data = array(
'texte_comment_unite'=>$this->input->post('texte_comment_unite'),
'id_space_unite'=>$this->input->post('id_news_u'),
'id_membre'=>$this->session->userdata('id_membre'),
'id_unite'=>$this->session->userdata('id_unite'),
);
$this->unite_model->add_comment_unite_model($data);
redirect('unite/get_news_unite');
}
else
{
$data['friends'] = $this->get_friends_unite();
$data['users_online'] = $this->get_users_online();
$data['uniteName'] = $this->uniteName();
$data['numberInvit'] = $this->numberInvit();
$layout_network['contenu'] = $this->load->view('espace_unite', $data, TRUE);
$this->load->view('layout_network',$layout_network);
}
} ?>
在我看来,当我提交表单时,我调用了这个函数。
谢谢