CodeIgniter从控制器加载数据,而不是从视图加载数据


CodeIgniter loads data from the controller but not from the view

问题是:CodeIgniter从控制器加载数据,而不是从视图加载数据

当我转到页面的源并单击表单操作链接时,它在源代码中加载数据,而不是在html视图中加载数据。

——视图

<table class="table hovered">
            <thead>
            <tr>
                <th class="text-left">User ID</th>
                <th class="text-left">Type</th>
                <th class="text-left">Name</th>
                <th class="text-left">Email</th>
                <th class="text-left">Phone</th>
            </tr>
            </thead>
            <tbody>
            <?php echo form_open('admin/manage_customer')  ?><!-- start of the form -->
            <?php if(isset($records)) : foreach($records as $row) : ?>
                <tr>
                    <td class="right"><?php echo $row->cus_id; ?></td>
                    <td class="right">Admin</td>
                    <td class="right"><?php echo $row->cus_name; ?></td>
                    <td class="right"><?php echo $row->cus_email; ?></td>
                    <td class="right"><?php echo $row->cus_phone; ?></td>
                </tr>
            <?php endforeach; ?>
            <?php endif; ?>
            <?php echo form_close(); ?><!-- END of the form -->
            </tbody>
            <tfoot></tfoot>
        </table>

——控制器

  function inbox()
{
    $data = array();
    if($query = $this->mod_contactus->get_records())
    {
        $data['records'] = $query;
    }
    $this->load->view('admin/admin_messages',$data);
}

——模型

<?php
class Mod_contactus extends CI_Model //Users (model name) share all the class and functions CodeIgniter models have
    {
    function get_records()
    {
        $query = $this->db->get('tbl_contactus');
        return $query->result();
    }

    function add_record($data)
    {
        $this->db->insert('tbl_contactus', $data);
        return;
    }

    function update_record()
    {
    }
}

我同意侯赛因的观点。首先检查模型是否返回了必要的数据。只有这样,您才应该检查html结构。但即使存在结构问题,也应该显示一些内容。因此,首先检查到视图的数据流