1. 程式人生 > >tp5的資料查詢,分頁及資料遍歷

tp5的資料查詢,分頁及資料遍歷

控制器層

public function oldlist()
    {
//          體質監測列表
$count  = Db::name('old_people_answer')->group('patient_name')->count();
$result = Db::name('old_people_answer')
//查詢所需值
->field('number,created_at,result,community_doctor_name,patient_name')
            ->group('number')
            ->
group('created_at') //第一個引數是每頁資料量,第二個引數是總共有多少資料 ->paginate(5,$count); // 獲取分頁顯示 $page = $result->render(); // 模板變數賦值 $this->assign('page', $page); $this->assign('data',$result); return $this->fetch(); }

檢視層一般用foreach進行遍歷



tp5手冊中的坑,它遍歷是用{foreach},我的確需要用<foreach></foreach>