CodeIgniter视图页面为空

时间:2014-09-24 11:19:07

标签: php mysql codeigniter templates

首先,我是CodeIgniter的新手。

我正在尝试使用CodeIgniter开发一个简单的CRUD页面。到目前为止,我刚创建了View页面,没有任何CRUD功能。它只是一个普通的视图页面,其中包含一个包含从数据库中检索的模型数据的表。

以下是我的视图页面的代码,该代码正常,文件名 - show_users.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CI CRUD</title>
</head>

<body>
<h2> Simple CI CRUD Application </h2>
<table width="600" border="1" cellpadding="5">
<tr>
<th scope="col">Id</th>
<th scope="col">User Name</th>
<th scope="col">Email</th>
<th scope="col">Mobile</th>
<th scope="col">Address</th>
</tr>
<?php foreach ($user_list as $u_key){ ?>
<tr>
<td><?php echo $u_key->id; ?></td>
<td><?php echo $u_key->name; ?></td>
<td><?php echo $u_key->email; ?></td>
<td><?php echo $u_key->address; ?></td>
<td><?php echo $u_key->mobile; ?></td>
</tr>

<?php }?>
</table>
</body>

</html>

我的模型是 - users_model.php

<?php

class Users_model extends CI_Model {

    function __construct()
    {
        parent::__construct();

        $this->load->database();

    }   

    public function get_all_users()
    {
        $query = $this->db->get('users');
        return $query->result();
    }

}

?>

我的控制器是 - users.php

  <?php
  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  class Users extends CI_Controller {
      function __construct()
      {
          parent::__construct();
          #$this->load->helper('url');
          $this->load->model('users_model');
      }

      public function index()
      {
          $data['user_list'] = $this->users_model->get_all_users();
          $this->load->view('show_users', $data);
      }
  }
  ?>

我的数据库服务器是MySQL,数据库名称ci_test,我的表是users

CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`email` varchar(100) NOT NULL,
`address` varchar(255) NOT NULL,
`mobile` varchar(15) NOT NULL,
PRIMARY KEY (`id`)
)

我的查看页面显示此输出:

Output

到目前为止一切顺利。现在,每当我尝试修改我的视图页面show_users.php时,页面都会被加载,但是空了。

以下是我修改过的视图页面的代码,我遇到了上述问题:

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">

  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

  <title>CI CRUD</title>
  <script type="text/javascript">
  function show_confirm(act,gotoid)
  {
        if(act=="edit")
             var r=confirm("Do you really want to edit?");
        else
             var r=confirm("Do you really want to delete?");
        if (r==true)
        {
             window.location="<?php echo base_url();?>index.php/users/"+act+"/"+gotoid;
        }
   }
   </script>

 </head>

 <body>
 <h2> Simple CI CRUD Application </h2>
 <table width="600" border="1" cellpadding="5">
 <tr>
 <th scope="col">Id</th>
 <th scope="col">User Name</th>
 <th scope="col">Email</th>
 <th scope="col">Mobile</th>
 <th scope="col">Address</th>
 <th scope="col" colspan="2">Action</th>
 </tr>

 <?php foreach ($user_list as $u_key){ ?>
 <tr>
 <td><?php echo $u_key->id; ?></td>
 <td><?php echo $u_key->name; ?></td>
 <td><?php echo $u_key->email; ?></td>
 <td><?php echo $u_key->address; ?></td>
 <td><?php echo $u_key->mobile; ?></td>
 <td width="40" align="left" ><a href="#" onClick="show_confirm('edit',<?php echo $u_key->id;?>)">Edit</a></td>
 <td width="40" align="left" ><a href="#" onClick="show_confirm('delete',<?php echo $u_key->id;?>)">Delete </a></td>
 </tr>
 <?php }?>
 <tr>
 <td colspan="7" align="right"> <a href="<?php echo base_url();?>index.php/user/add_form">Insert New User</a></td>
 </tr>
 </table>
 </body>

 </html>

请注意,我的模型和控制器中没有任何更改。

有人可以说明问题所在吗?对此有任何方便有效的解决方案吗?我正在使用Notepad ++进行开发,没有IDE。

编辑:虽然我找到了问题的解决方案并接受了答案,但我仍然对一个问题感到困惑。

在我的模型中 - users_model.php,我有一句话:

    $this->load->database();

但是在教程中,它是这样编写的:

    $this->load->database("ci_test");

基本上,我忘了提供我的数据库名称,即ci_test。我仍然没有编辑我的模型代码,但我的视图页现在工作得很好。那有什么意义呢?是否有必要在$this->load->database()中提及数据库名称?这是我的观看页面为空的原因之一吗?

4 个答案:

答案 0 :(得分:5)

这不是您的视图页面的问题。 转到配置文件夹open autoload.php

$autoload['helper'] = array('url');

其他方式

取消注释#$this->load->helper('url'); to $this->load->helper('url');

<?php

class Users_model extends CI_Model {

    function __construct()
    {
        parent::__construct();

        $this->load->database();
        $this->load->helper('url');

    }   

    public function get_all_users()
    {
        $query = $this->db->get('users');
        return $query->result();
    }

}

?>

答案 1 :(得分:2)

您的评论的答案$this->load->database()

连接数据库有两种方法: &#34;自动连接&#34;在application / config / autoload.php中

$autoload['libraries'] = array('database');

手动连接

此函数的第一个参数可以选择用于从配置文件中指定特定的数据库组,或者甚至可以为配置文件中未指定的数据库提交连接值。

$config['hostname'] = "localhost";
$config['username'] = "myusername";
$config['password'] = "mypassword";
$config['database'] = "mydatabase";
$config['dbdriver'] = "mysql";
$config['dbprefix'] = "";
$config['pconnect'] = FALSE;
$config['db_debug'] = TRUE;
$config['cache_on'] = FALSE;
$config['cachedir'] = "";
$config['char_set'] = "utf8";
$config['dbcollat'] = "utf8_general_ci";

$this->load->database($config);

答案 2 :(得分:1)

而不是<?php echo base_url();?> index.php / user / add_form 使用:<?php echo site_url('user/add_form');?>

答案 3 :(得分:0)

我认为问题在于这一行:

window.location="<?php echo base_url();?>index.php/users/"+act+"/"+gotoid;

也许你忘记了加载帮助网址?