2

我正在使用基于地址的控件和带有index.php?site=filename的 GET 方法对 PHP 进行编码。然后我在内容 div中包含现有的filename.php 。这很简单,但很有效。我也有通知 div 我在其中包含来自数据库的数据的文件

我试图在 CodeIgniter 中得到类似的结果

html
    head
    /head
    body
        div notification bar (always on top like Material)
        div menu (slide from left also like Material)
        div content (depended on controller and loaded view)
        div footer (only /body /html)
    /body
/html

经过

public function __construct()
        {
            parent::__construct();
            $this -> load -> view('notification ');
            $this -> load -> view('menu '); 
        }

我想将数据从模型发送到通知视图,但我不能在构造函数中这样做。我也不想在每个控制器的方法中加载相同的视图。我该怎么做?我不期望现成的解决方案,但有一些想法,也许是伪代码?

或者也许这只是这样的一种解决方案?在每种方法中加载所有需要的视图?真的吗?

class news extends CI_Controller
    {
        public function __construct()
        {
            parent::__construct();
            $this -> load -> view('header');
        }
        public function index()
        {
            [...]//data from model
            $this -> load -> view('notification',$Data);
            $this -> load -> view('menu',$Permission);
            $this -> load -> view('news',$Content);
        }
[...]
4

1 回答 1

0

我正在尝试这个(对不起波兰语):

控制器

class uzytkownik extends CI_Controller
    {
        public function index()
        {
            $this -> load -> model('Uzytkownik_model');
            $DaneLogo['Tytul'] = 'Dzie z życia';
            $Dane = array(
            'Naglowek' => $this -> load -> view('naglowek', NULL, TRUE),
            'Logo' => $this -> load -> view('logo', $DaneLogo, TRUE),
            'Lista' =>  $this -> Uzytkownik_model -> PobierzUzytkownikow(), 
            );

            $this -> load -> view('uzytkownicy', $Dane);
        }

看法

echo $Naglowek;
echo $Tytul;
echo $Logo;

foreach ($Lista->result() as $Uzytkownik)
{
    echo $Uzytkownik -> id.' ';
    echo $Uzytkownik -> imie.' ';
    echo $Uzytkownik -> nazwisko.'<br>';

}

工作正常,但...

    <head>
    <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/>
</head>
<body>
<div id='logo' style='background-color: blue; wight: 100%; height: 40px;'>
    <center> <!-- i want $Tytul HERE --></center>
</div>
Dzie z zycia<!-- NOT HERE -->1 Jan Kowalski<br>2 Adam Nowak<br>3 Alicja Marczak<br></div>
</body>
于 2015-02-23T23:43:39.237 回答