时间:2021-07-01 10:21:17 帮助过:3人阅读
2.查询多条数据 并分页
$page = $this->_get_page(); $datas = $model->find(array( ‘conditions‘ => ‘1=1‘ . $conditions, ‘limit‘ => $page[‘limit‘], ‘count‘ => true, ‘order‘ => ‘sort_order‘, )); $this->_format_page($page); $this->assign(‘page_info‘, $page);
3.统计数据条数
$count = $model->getCount();
ecmall 数据库操作
标签: