用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2576|回复: 4
收起左侧

加载多个model的问题

[复制链接]
发表于 2012-5-1 16:32:10 | 显示全部楼层 |阅读模式

PHP复制代码
 
class Video extends CI_controller{
        /**
                * 构造方法
                */

        function __construct(){
            parent::__construct();
                        $this->session->userdata['user_id']!='' ? : redirect('login');
                        $this->load->model('video_model','video');
                        //$this->load->model('user_model','user');
        }
 
/**
                 * 方法名:video_category
                 * 作用:查询分类名称
                 * */

                private function video_category($category_id){
                        $this->load->model('category_model','category');
                        $result = $this->category->videoByCid($category_id);
                        file_put_contents('result.txt', var_export($result,true));
                }
 
复制代码



然后出现这个问题
HTML复制代码
 
A PHP Error was encounteredSeverity: Notice
Message:  Undefined property: Video:category_model
Filename: controllers/video.php
 
 
复制代码



发表于 2012-5-1 16:38:11 | 显示全部楼层
私有方法的问题吧
 楼主| 发表于 2012-5-3 09:30:40 | 显示全部楼层
phoenixg 发表于 2012-5-1 16:38
私有方法的问题吧

哪里有问题?看不出哪里有问题啊!!!
发表于 2012-5-3 12:39:42 | 显示全部楼层
sola 发表于 2012-5-3 09:30
哪里有问题?看不出哪里有问题啊!!!

private的问题?
 楼主| 发表于 2012-5-5 10:26:25 | 显示全部楼层
yuzhigang5460 发表于 2012-5-3 12:39
private的问题?

设置成public也不行呐 还是这外错误   是不是得改框架底层的model?

本版积分规则