我不知道为什么我的代码执行会在$this->load->model('recommendations')
停止。我的模型类名和文件名是相同的。
现在页面打印hola1
,但它不打印hola2
,当我在try catch block
中使用它时,仍然没有任何反应,结果是相同的。
echo "hola1";
echo $this->load->model('recommendations');
echo "hola2";
修改
在我的log_threshold
文件中将5
设置为config.php
后。我得到以下日志。
DEBUG - 2013-11-20 04:39:26 --> Config Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Hooks Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Utf8 Class Initialized
DEBUG - 2013-11-20 04:39:26 --> UTF-8 Support Enabled
DEBUG - 2013-11-20 04:39:26 --> URI Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Router Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Output Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Security Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Input Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Global POST and COOKIE data sanitized
DEBUG - 2013-11-20 04:39:26 --> Language Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Loader Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Database Driver Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Controller Class Initialized
DEBUG - 2013-11-20 04:39:26 --> Model Class Initialized
答案 0 :(得分:0)
有点迟到,但也许有人会遇到同样的问题。
在我的情况下,问题是在我的模型中调用$this->db->select()
之后我忘了用分号。所以,也许您只需要检查代码语法。