ci 框架怎么用模型获取数据显示到视图上

2024-11-16 01:48:32
推荐回答(1个)
回答1:

1.在models里面建一个公共的对数据库增删改查的模型,

class M_common extends CI_Model
{
function __construct()
{
parent::__construct();
}

/**
 * 获取单条数据
 * @access   public
 * @param    string   表名
 * @param    array    条件数组
 * @param    string   查询字段
 * @return   array    一维数据数组
 */
function get_one($table, $where = array(), $fields = '*')
{
if($where)
{
$this->db->where($where);
}
$res=$this->db->select($fields)->from($table)->get()->row_array();
return $res;
}

/**
 * 获取多条数据
 * @access   public
 * @param    string   表名
 * @param    array    条件数组
 * @param    string   查询字段
 * @return   array    多维数据数组
 */
function get_all($table, $where = array(), $fields = '*')
{
if($where)
{
$this->db->where($where);
}
$res=$this->db->select($fields)->from($table)->get()->result_array();
return $res;
}

2.在controller里面引入model,调用model里面的查询函数,放在$data['person']里面。

class Buzhang extends B_Controller
{
    function __construct()
    {
        parent::__construct();
        $this->load->model('m_common');
    }

    function index()
    {
         $data['persons'] = $this->m_common->get_all("person", array('partment' => $pid));
        $this->load->view('index', $data);

    }

3.在视图view,也就是index.php直接foreach循环$persons,就可以输出了。

 
                
                    ">
                    
                    
                    
                    
                

差不多就是这样,多看看官方文档,有实例。