3个回答
2013-08-01
展开全部
在调用该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;
}
在视图中<?php $resullt = $this->model->function();?>
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;
}
在视图中<?php $resullt = $this->model->function();?>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-01
展开全部
那我在model里写了一个类,在视图里如何直接调用?不像在controller里调。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询