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 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题