3

我是codeigniter的新手。我想在不同的页面上显示多视图。我创建了一个页面,在该页面上创建了一个编辑按钮。我希望当我点击编辑按钮时,我会在另一个页面上进行重定向。我怎样才能做到这一点?

这是我的代码:

class Edit extends CI_Controller
{
    function __construct()
    {
            parent::__construct();
    }
    function edit()
    {
        $this->load->helper('url');
        if($this->input->post('edit') == True)
        {
            redirect('edit');
        }
    }
}
4

2 回答 2

1

该按钮将显示在视图中,这意味着单击视图中的按钮应重定向到其他页面(视​​图):

在视图上使用锚点:

 <?php echo anchor('controller_name/function_name', 'acnchor_name'); ?>

 <?php echo anchor('Edit/edit', 'edit'); ?>

其中 edit 必须是 function 和 view 的名称。

现在点击它会有一个视图链接,它将重定向到编辑视图。

希望能帮到你!

于 2013-02-09T06:51:24.183 回答
1

视图 1:(您的链接所在的位置)

<?php echo anchor('Edit/edit', 'Edit Value'); // Here Edit is your controller and edit is the function name. ?>

并在编辑控制器中像这样修改它:

class Edit extends CI_Controller
{
    function __construct()
    {
            parent::__construct();
    }

    function edit()
    {
        $this->load->helper('url');
        if($this->input->post('edit') == True)
        {
            //redirect('edit'); //Do not use this as this line will call the same function again.
            $this->load->view('edit_view'); // where edit_view.php is present in your views directory. 
        }
    }
}

希望这可以帮助。

于 2013-02-09T07:06:22.523 回答