我正在使用基于地址的控件和带有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);
}
[...]