模型

模型对于那些想使用更传统的 MVC 模式的人来说是可选的。

目录

什么是模型?

模型是专门用来和数据库打交道的 PHP 类。例如,假设你使用 CodeIgniter管理一个博客,那么你应该会有一个用于插入、更新以及获取博客数据的模型类。这里是一个模型类的例子:

  1. class Blog_model extends CI_Model {
  2.  
  3. public $title;
  4. public $content;
  5. public $date;
  6.  
  7. public function get_last_ten_entries()
  8. {
  9. $query = $this->db->get('entries', 10);
  10. return $query->result();
  11. }
  12.  
  13. public function insert_entry()
  14. {
  15. $this->title = $_POST['title']; // please read the below note
  16. $this->content = $_POST['content'];
  17. $this->date = time();
  18.  
  19. $this->db->insert('entries', $this);
  20. }
  21.  
  22. public function update_entry()
  23. {
  24. $this->title = $_POST['title'];
  25. $this->content = $_POST['content'];
  26. $this->date = time();
  27.  
  28. $this->db->update('entries', $this, array('id' => $_POST['id']));
  29. }
  30.  
  31. }

注解

上面的例子中使用了 查询构造器 数据库方法。

注解

为了保证简单,我们在这个例子中直接使用了 $POST 数据,这其实是个不好的实践,一个更通用的做法是使用 [输入库_]($ea10193887756ea9.md) 的 $this->input->post('title')

剖析模型

模型类位于你的 application/models/ 目录下,如果你愿意,也可以在里面创建子目录。

模型类的基本原型如下:

  1. class Model_name extends CI_Model {
  2.  
  3. public function __construct()
  4. {
  5. parent::__construct();
  6. // Your own constructor code
  7. }
  8.  
  9. }

其中,Model_name 是类的名字,类名的第一个字母 必须 大写,其余部分小写。确保你的类继承 CI_Model 基类。

文件名和类名应该一致,例如,如果你的类是这样:

  1. class User_model extends CI_Model {
  2.  
  3. public function __construct()
  4. {
  5. parent::__construct();
  6. // Your own constructor code
  7. }
  8.  
  9. }

那么你的文件名应该是这样:

  1. application/models/User_model.php

加载模型

你的模型一般会在你的 控制器 的方法中加载并调用,你可以使用下面的方法来加载模型:

  1. $this->load->model('model_name');

如果你的模型位于一个子目录下,那么加载时要带上你的模型所在目录的相对路径,例如,如果你的模型位于 application/models/blog/Queries.php ,你可以这样加载它:

  1. $this->load->model('blog/queries');

加载之后,你就可以通过一个和你的类同名的对象访问模型中的方法。

  1. $this->load->model('model_name');
  2.  
  3. $this->model_name->method();

如果你想将你的模型对象赋值给一个不同名字的对象,你可以使用 $this->load->model()方法的第二个参数:

  1. $this->load->model('model_name', 'foobar');
  2.  
  3. $this->foobar->method();

这里是一个例子,该控制器加载一个模型,并处理一个视图:

  1. class Blog_controller extends CI_Controller {
  2.  
  3. public function blog()
  4. {
  5. $this->load->model('blog');
  6.  
  7. $data['query'] = $this->blog->get_last_ten_entries();
  8.  
  9. $this->load->view('blog', $data);
  10. }
  11. }

模型的自动加载

如果你发现你有一个模型需要在整个应用程序中使用,你可以让 CodeIgniter在系统初始化时自动加载它。打开 application/config/autoload.php 文件,并将该模型添加到 autoload 数组中。

连接数据库

当模型加载之后,它 并不会 自动去连接你的数据库,下面是一些关于数据库连接的选项:

  • 你可以在控制器或模型中使用 标准的数据库方法 连接数据库。

  • 你可以设置第三个参数为 TRUE 让模型在加载时自动连接数据库,会使用你的数据库配置文件中的配置:

  1. $this->load->model('model_name', '', TRUE);
  • 你还可以通过第三个参数传一个数据库连接配置:
  1. $config['hostname'] = 'localhost';
  2. $config['username'] = 'myusername';
  3. $config['password'] = 'mypassword';
  4. $config['database'] = 'mydatabase';
  5. $config['dbdriver'] = 'mysqli';
  6. $config['dbprefix'] = '';
  7. $config['pconnect'] = FALSE;
  8. $config['db_debug'] = TRUE;
  9.  
  10. $this->load->model('model_name', '', $config);