想问下ci里如何在视图里直接调用模型里的方法

在视图里直接 model->function();?> 这样貌似不行?
2024-11-16 01:36:28
推荐回答(3个)
回答(1):

在调用该view的控制器里load了模型,就可以在view里用该模型的方法.

回答(2):

建立模型代码大致如下

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();?>

回答(3):

那我在model里写了一个类,在视图里如何直接调用?不像在controller里调。。。。