1.CI中的控制器
透過CI建立自己的工程,只需要將CI壓縮包中的application目錄、system目錄和index.php檔案拷貝到自己的工程目錄就可以了。自己的程式碼完全在application目錄中編輯,system目錄不要修改,以後CI出了新版本的時候,只要替換掉system檔的內容就可以了,如果自行修改,升級就會遇到麻煩。
拷貝完成後,透過URL開啟新工程的首頁:http://localhost:8080/testCodeIgniter/
.文件定義的,目前使用的控制器是Welcome.php
打開
/application/controllers/Welcome.php
welcome_message
[code]<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Welcome extends CI_Controller { /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this controller is set as the default controller in * config/routes.php, it's displayed at http://example.com/ * * So any other public methods not prefixed with an underscore will * map to /index.php/welcome/<method_name> * @see http://codeigniter.com/user_guide/general/urls.html */ public function index() { $this->load->view('welcome_message'); } } ?>
welcome_message.php
/application/views
[code]public function test() { echo "这是Welcome控制器的test方法"; }
pathinfo(http://localhost:8080/testCodeIgniter/index.php/Welcome/test)
[code]<?php class User extends CI_Controller { public function index() { echo 'user---index'; } } ?>
[code]$this->load->view('/user/index');
[code]<?php echo "这是user视图"; ?>
目錄下
透過URL存取控制器使用pathinfo,格式為:協定://網域/入口檔案/控制器/方法名,對於私有方法、保護方法或以下劃線開頭的方法,不能透過pathinfo存取
在上面的控制檔Welcome.php中新增test方法:
[code]$this->load->vars('title', '这是标题');
[code]$data['title'] = '这是标题'; $data['list'] = $list; $this->load->vars($data);
就可以呼叫到Welcome控制器的test方法
rruser控制器,包含一個index方法reee控制器需要從CI_Controller類別繼承
透過pathinfo可以存取user控制器的index方法:http://localhost:8080/testCodeIgniter/index.php/user/index
2. CI中的視圖
控制器載入視圖
$title
視圖檔案可以是php原生程式碼,不需要HTML程式碼
控制器中可以載入多個視圖,可以根據文件的結構由上至下依序載入視圖
$list
控制器分配變數
兩種方法:一. 單一變數
system/core/loader.php
兩種分配方式,在視圖中都可以用
_model
user_model.php
模型檔案的名稱必須是小寫,因為在🎜
system/core/loader.php
的model方法中,会将传入的模型名称转成小写再去寻找对应的文件,但是类名必须是首字母大写并且拼装“
_model
”,拼装后的结果应与模型文件的文件名一致,只是首字母大写,例如:文件名是
user_model.php
,类名应该是
User_model
。
– user_model.php文件
[code]<?php class User_model extends CI_Model { function __construct() { parent::__construct(); } function getAllUser() { $this->load->database(); $result = $this->db->get('blog_user'); return $result->result(); } } ?>
在控制器中这样调用
[code]// 加载模型,通过第二个参数还可以指定别名,后面的代码使用别名访问 $this->load->model('user_model'); // 加载完成后,超级对象就生成了user_model属性,它是User_model类型的对象 $list = $this->user_model->getAllUser(); // 将数据传给视图 $this->load->view('user_view', array('list'=>$list));
原则上,除了关系表,每张实体表都应该对应一个模型
以上就是CodeIgniter学习笔记 Item2--CI中的MVC的内容,更多相关内容请关注PHP中文网(www.php.cn)!