黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

CakePHP 查看元素

cakephp 查看元素

 

網(wǎng)頁的某些部分在多個網(wǎng)頁上重復(fù),但位于不同的位置。 cakephp 可以幫助我們重用這些重復(fù)的部分。這些可重復(fù)使用的部分稱為 元素-幫助框、額外菜單、 等。元素基本上是一個 迷你視圖。我們也可以在元素中傳遞變量。

cake\view\view::element(string $elementpath, array $data, array $options =[]

上述函數(shù)的三個參數(shù)如下:

  • 第一個參數(shù)是 /src/template/element/ 文件夾中模板文件的名稱。
  • 第二個參數(shù)是渲染視圖可用的數(shù)據(jù)數(shù)組。
  • 第三個參數(shù)用于選項數(shù)組。例如緩存。

在三個參數(shù)中,第一個是強制性的,其余的都是可選的。

 

示例

在 src/template/element 目錄下創(chuàng)建一個元素文件名為 helloworld.php 的文件夾。 將以下代碼復(fù)制到該文件中。

 

src/template/element/helloworld.php

hello world

在 src/template 中創(chuàng)建一個 elems 文件夾,然后在該目錄下創(chuàng)建一個名為index.php 的 view 文件。將以下代碼復(fù)制到該文件中。

 

src/template/elems/index.php

element example:  echo $this--->element('helloworld'); ?>

在 config/routes.php 文件中進(jìn)行更改,如下面的程序所示。

 

config/routes.php

use cake\http\middleware\csrfprotectionmiddleware;
use cake\routing\route\dashedroute;
use cake\routing\routebuilder;
$routes--->setrouteclass(dashedroute::class);
$routes->scope('/', function (routebuilder $builder) {
   $builder->registermiddleware('csrf', new csrfprotectionmiddleware([
      'httponly' => true,
   ]));
   $builder->applymiddleware('csrf');
   $builder->connect('/element-example',['controller'=>'elems','action'=>'index']);
   $builder->fallbacks();
});

在 src/controller/elemscontroller.php 中創(chuàng)建一個 elemscontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。

 

src/controller/elemscontroller.php

   namespace app\controller;
   use app\controller\appcontroller;
   class elemscontroller extends appcontroller{
      public function index(){
      }
   }

通過訪問以下 url http://localhost/cakephp4/element-example 來執(zhí)行上面的示例

 

輸出

執(zhí)行后,上述 url 將為您提供以下輸出。

下一節(jié):cakephp 查看事件

cakephp 教程

相關(guān)文章