1

headerview.php

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title><?php echo $title; ?></title>
    </head>
    <body>
        <div id="topmenu">
            <ul>
                <li><a href="What Should I write Here ?">Home</a></li>
                <li><a href="What Should I write Here ?">About Us</a></li>
                <li><a href="What Should I write Here ?">Contact Us</a></li>
            </ul>    
        </div>  

页脚视图.php

</body>
</html>

控制器/main.php

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class main extends CI_Controller {
 function index(){
     $this->load->view('headerview');
     $this->load->view('homeview');
     $this->load->view('footerview');
  } 

}
?>

如何通过一个函数显示 view/about_us_view.php、view/contact.php 等页面?

-谢谢。

4

2 回答 2

1

我假设你所有的视图页面都在根视图文件夹中

控制器

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Main extends CI_Controller {

 function index($page = 'homeview')
{

    if ( ! file_exists('application/views/'.$page.'.php')){

        show_404();
    }
    else{

    $this->load->view('headerview');
    $this->load->view( $page);
    $this->load->view('footerview');
        }

}

}

标题

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title><?php echo $title; ?></title>
    </head>
    <body>
        <div id="topmenu">
            <ul>
                <li><a href="<?php echo base_url('index.php/main');?>">HOME</a></li>
                <li><a href="<?php echo base_url('index.php/main/index/about_us_view');?>">About Us</a></li>
                <li><?php echo base_url('index.php/main/index/contact');?>">Contact Us</a></li>
            </ul>    
        </div> 

下面给出了基本的 url 模式

http://example.com/[controller-class]/[controller-method]/[arguments]

在 index 函数中,我们将页面名称作为参数传递

查看联系页面

<?php echo base_url('index.php/main/index/contact');?>

这里

控制器:主

方法:索引

论据:接触

还会在 config/autoload.php 中自动加载 url 帮助程序。

$autoload['helper'] = array('url');
于 2013-02-21T12:47:16.697 回答
-1

您需要执行以下操作:

headerview.php

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title><?php echo $title; ?></title>
    </head>
    <body>

主页视图.php

<?php $this->load->view('headerview'); ?>
<div id="topmenu">
            <ul>
                <li><a href="What Should I write Here ?">Home</a></li>
                <li><a href="What Should I write Here ?">About Us</a></li>
                <li><a href="What Should I write Here ?">Contact Us</a></li>
            </ul>    
        </div>  
<?php $this->load->view('footerview'); ?>

和footerview.php

</body>
</html>

和控制器

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class main extends CI_Controller {
 function index(){
     $this->load->view('homeview');
  } 
}
?>
于 2013-02-21T12:14:35.710 回答