在调用该view的控制器里load了模型,就可以在view里用该模型的方法.
建立模型代码大致如下
public function get_config( $key ){
$CI =& get_instance();
return $CI->config->item( $key );
}
public function get_module(){
$CI =& get_instance();
$CI->load->model( "model" );
$result=$CI->model->function();
return $result;
}
在视图中model->function();?>
那我在model里写了一个类,在视图里如何直接调用?不像在controller里调。。。。