• cakephp随笔


    1、使用了 

        public $uses = array();          //如果控制器和模型相同的话,不需要加载,如果不是就需要加载,代表的就是模型层
        public $helpers = array('html','Form','Session'); //这里的所有的用到的都必须加载 ,代表的就是视图层
        public $components = array('Session');  //session被cakephp默认加载进去了,用到的还是加载一次吧。//代表的就是控制器曾,这里方法,代表的是控制器的方法

    这个比较关键,如果在使用之前不进行加载的话,会产生很严重的结果

    2、这里需要注意一点的是

      

    public $Components = null; 
    
    /**
     * Array containing the names of components this controller uses. Component names
     * should not contain the "Component" portion of the classname.
     *
     * Example: `public $components = array('Session', 'RequestHandler', 'Acl');`
     *
     * @var array
     * @link http://book.cakephp.org/2.0/en/controllers/components.html
     */
        public $components = array('Session');

    看到源代码的这个核心方法的时候,居然使用了两个相同的变量、其实不同的,在CakePHP所有的约定没有说明一点就是首字母大写的就是一个对象,而小写开始的就是变量。

    3、component 内容 

    • Security
    • Sessions
    • Access control lists
    • Emails
    • Cookies
    • Authentication
    • Request handling
    • Pagination

    使用组件  

    $this->Components->load('OneTimer');


    动态使用组件
     public $components = array('Session', 'Cookie');
    开发一个组件

    request 对象为系统传递到controller去的数据,包含了表单中的所有数据
    例如获取很多数据
    $this->request->pass;
    $this->request['pass'];
    $this->request->params['pass'];
    
    // named parameters
    $this->request->named;
    $this->request['named'];
    $this->request->params['named'];

    获取get参数

    $this->request->query['page']; 参数名

    获取Url信息和客户端的很多信息

    获取data数据

    this->request->data['MyModel']['title'];

    判断请求类型

    $this->request->is('post');
    $this->request->isPost();
    $this->request->webroot contains the webroot directory.
    $this->request->base contains the base path.
    $this->request->here contains the full address to the current request
    $this->request->query contains the query string parameters.

    其他数据

    response对象

    Sending headers for redirects. 发送头部
    Sending content type headers. 发送数据类型
    Sending any header. 发送头部
    Sending the response body. 发送回应内容


  • 相关阅读:
    Python 拼接字符串的6种方法总结:
    Python 基础
    蓝牙通信测试app之蓝牙通信(二)
    蓝牙通信测试app之蓝牙配对(一)
    对ZAxxx解压工具的简单逆向记录
    上传项目到GitHub---详细步骤
    面试复习
    JavaWeb基础一
    MySQL基础二---基础介绍
    JS——Date日期对象
  • 原文地址:https://www.cnblogs.com/linksgo2011/p/2934907.html
Copyright © 2020-2023  润新知