CI 2 - 语言课程和模型

时间:2012-04-12 01:23:24

标签: codeigniter-2 php-5.2

我注意到一个奇怪的问题,我似乎找不到任何解释它。

在我的一个模型上,我添加了一条错误输出消息,提示记录不可用,但是当它输出时,我没有文字,只是一个空白页。

现在语言标签是有效的,我唯一可以想到的是语言文件并不打算在模型上使用,如果是这种情况我没有看到在任何地方解释。

我希望有人可以帮助我在这方面找到正确的方向,如果我必须将其设置为假并处理ui上的消息,我会这样做,但不愿意。

感谢。

编辑:

这是一个应该有用的快速代码片段:

//fetch topic data.
$this->db->select('id, Name, Description, Level');
$this->db->from('groups');
$this->db->where('id', $gid);
$query = $this->db->get();
$GroupData = $query->row();

//see if we have any records to show.
if($query->num_rows() > 0) {
    $this->setId($GroupData->id);
    $this->setName($GroupData->Name);
    $this->setDescription($GroupData->Description);
    $this->setLevel($GroupData->Level);
} else {
    //no record was found, throw an error.
    show_error($this->lang->line('invalidgid').'<hr />File:'.__FILE__.'<br />Line:'.__LINE__, 500, $this->lang->line('error'));
    log_message('error', 'invalid GroupID was provided.'); //log error in error log.
}

1 个答案:

答案 0 :(得分:0)

我觉得愚蠢,但我想出来了,那时语言文件尚未加载,ARGH!

我将不得不回到它看起来的那个绘图板,任何建议,请发布它们。