dongqiao0953 2014-11-13 09:39
浏览 42
已采纳

Cakephp 3.0教程很难[关闭]

Hi I'm a novice in cakephp and also I just finished reading the book "Php and Mysql for Beginners" by Lassoff.

So I'm totally newbie at programming.

However, I'm trying to make my blog with cakephp 3.0 which is newest version, I got stuck understanding some codes in the tutorial.

For example,

// src/Controller/ArticlesController.php

namespace App\Controller;

class ArticlesController extends AppController {

    public function index() {
        $articles = $this->Articles->find('all');
        $this->set(compact('articles'));
    }
}

I have no idea about the last two lines of code.

What i know is $article(variable) is declared and will store something by $this->Srticles->find('all')

and I don't know what is $this means and what is set() and what is ->

Please let me know or would you recommend something to read? like a book or something?

Thank you for your help.

  • 写回答

1条回答 默认 最新

  • dongzai3917 2014-11-13 11:49
    关注

    Let me clarify :

    cakePHP uses Object Oriented coding .Uses ORM for Database mapping. Object Relationship Model means it treats Table record as object.

    1)

      $articles = $this->Articles->find('all');
    

    Means For current Object , Goto table article which get associated by Model name Article ,And find All records.Store it in $articles. Its like SELECT * FROM articles.

    2)

     $this->set(compact('articles'));
    

    Here data fetched by current object Is set to send to view to render.And compact creates array from object.

    For more on 2nd point check HERE

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于多单片机模块化的一些问题
  • ¥30 seata使用出现报错,其他服务找不到seata
  • ¥35 引用csv数据文件(4列1800行),通过高斯-赛德尔法拟合曲线,在选取(每五十点取1点)数据,求该数据点的曲率中心。
  • ¥20 程序只发送0X01,串口助手显示不正确,配置看了没有问题115200-8-1-no,如何解决?
  • ¥15 Google speech command 数据集获取
  • ¥15 vue3+element-plus页面崩溃
  • ¥15 像这种代码要怎么跑起来?
  • ¥15 安卓C读取/dev/fastpipe屏幕像素数据
  • ¥15 pyqt5tools安装失败
  • ¥15 mmdetection