|
比如我开发一个频道 有该频道相关的配置信息,
所以每个控制器里都会用到
为什么不可以这样使用
class XXXX extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('Web_config'); //配置模型
$data['webconfig'] = $this->Web_config->Get_web(); //这里获取配置信息
}
public function index()
{
//这里使用配置信息
$this->load->view('xxxx/index.htm',$data);
}
public function xxxx()
{
//这里使用配置信息
$this->load->view('xxxx/xxxx.htm',$data);
}
}
不能这样写吗 因为我这样写后 视图里获取不到这个$data['webconfig'] , 难道必须在每个function 读取一次配置信息吗
|
|