如何在codeigniter的不同页面上显示多个视图

Posted

技术标签:

【中文标题】如何在codeigniter的不同页面上显示多个视图【英文标题】:how to display multiple views on different pages in codeigniter 【发布时间】:2013-01-24 23:36:15 【问题描述】:

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

这是我的代码:

class Edit extends CI_Controller

    function __construct()
    
            parent::__construct();
    
    function edit()
    
        $this->load->helper('url');
        if($this->input->post('edit') == True)
        
            redirect('edit');
        
    

【问题讨论】:

$this->load->view('edit_view'); 你能详细说明一下@AlphaMale 请在此处阅读文档:ellislab.com/codeigniter/user-guide @jayant.porwal 这取决于。你是在问如何加载视图??? @AlphaMale 我在问如何在另一个页面上加载视图。 . .当我点击编辑时,我想切换到另一个页面 【参考方案1】:

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

在视图上使用锚点:

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

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

其中 edit 必须是函数和视图的名称。

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

希望能帮到你!

【讨论】:

【参考方案2】:

查看 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. 
        
    

希望这会有所帮助。

【讨论】:

以上是关于如何在codeigniter的不同页面上显示多个视图的主要内容,如果未能解决你的问题,请参考以下文章

Codeigniter foreach 视图表布局

如何解决codeigniter中函数调用的空白页

Codeigniter 分页 create_link() 在视图页面上显示空白

如何使用连接表向数据库添加记录 - codeigniter

CodeIgniter:如何“突出显示”用户当前所在页面的链接?

如何在codeigniter中显示json数据[重复]