- 注册时间
- 2013-4-12
- 最后登录
- 2013-5-2
- 阅读权限
- 10
- 积分
- 81
- 精华
- 0
- 帖子
- 24
|
wuyichao36 发表于 2013-4-17 09:46
view里面用的是demo里面的内容。应该没有任何问题的 - public function list_admin($index, $size){//list
-
- $start = $index * $size;
- $data = array();
- $this->db->from($this->tableName);
-
- $this->db->order_by('id desc');
-
- $this->db->where('is_class',2);
- if($start){
- $this->db->limit($start,$size);
- }else{
- $this->db->limit($size);
- }
- $query = $this->db->get();
-
- $data = $query->result_array();
-
-
-
- $resultData = array("total"=>$this->count_admin(),"data"=>$data);
- return $resultData;
-
- }
-
- public function count_admin(){//list lenght
- $this->db->from($this->tableName);
- $this->db->where('is_class', 2);
- $query = $this->db->get();
- return $query->num_rows();
- }
复制代码 model里面内容、、什么地方错了啊。 |
|