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

 我来答
明珠de广场
推荐于2016-05-06
知道答主
回答量:7
采纳率:0%
帮助的人:6.8万
展开全部

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,就可以输出了。

 <?php foreach ($persons as $item): ?>
                <tr>
                    <th scope="row" data-id="<?=$item['id']?>"><?= $item['user_name'] ?></th>
                    <td><?= $item['nic_name'] ?></td>
                    <td><?= $item['phone'] ?></td>
                    <td><?= $item['email'] ?></td>
                    <td><?= $item['pname'] ?></td>
                </tr>
<?php endforeach; ?>

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

光点科技
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件... 点击进入详情页
本回答由光点科技提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式