doushang7209 2015-09-07 19:07
浏览 42
已采纳

在codeigniter中从模型中获取数据的奇怪问题

I have a model a method in my Model as

public function selectWhereLimitOffset($table_name, $where = NULL, $limit, $offset)
{
    if ($where) {
        $this->db->where($where);
    }

    $this->db->order_by('post_id', "desc"); 

    if($limit)
        $this->db->limit($limit, $offset);

    $result = $this->db->get($table_name);
    return $result->result();
} 

I'm calling this method from this function in my controller:

public function exams($page_id = NULL)
{
    $offset = 0;

    if($page_id == NULL)
        $offset = 1;
    else
        $offset = ($page_id * 10);

    $limit = 10;

    $data['main_content'] = 'dashboard/exams';
    $data['page_errors'] = FALSE;
    $where = NULL;
    $data['results_exam'] = $this->Fetch->selectWhereLimitOffset('exam', $where, $limit, $offset);
    $data['results_count_total'] = $this->Fetch->getCount('exam');
    $this->load->view('includes/template_su', $data);
}

Now the weird thing here is, the method selectWhereLimitOffset() works fine if called from other similar methods in my controller. But when called from this method exams(), it doesn't fetch the data from the table. A similar method that work perfectly fine is:

public function posts($page_id = NULL)
{
    $offset = 0;

    if($page_id == NULL)
        $offset = 1;
    else
        $offset = ($page_id * 10);

    $limit = 10;

    $data['main_content'] = 'dashboard/posts';
    $data['page_errors'] = FALSE;
    $where = NULL;
    $data['results_post'] = $this->Fetch->selectWhereLimitOffset('post', $where, $limit, $offset);
    $data['results_count_total'] = $this->Fetch->getCount('post');
    $this->load->view('includes/template_su', $data);
}

One more thing, the next statement:

$data['results_count_total'] = $this->Fetch->getCount('exam');

does return the count of rows from the table, so that proves that there's no issue with the table name. The table has only one row, if that might help. The output of the data array is as follows:

Array
(
    [main_content] => dashboard/exams
    [page_errors] => 
    [results_exam] => Array
        (
        )

    [results_count_total] => 1
)

Please help.

  • 写回答

1条回答 默认 最新

  • dongta5747 2015-09-07 19:16
    关注

    Solved the problem. Just had to change the offset value from 1 to 0. Thats it.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵