精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

CakePHP 擴(kuò)展視圖

cakephp 擴(kuò)展視圖

 

很多時(shí)候,在制作網(wǎng)頁(yè)時(shí),我們希望在其他頁(yè)面中重復(fù)頁(yè)面的某些部分。 cakephp 具有這樣一種功能,可以通過(guò)它在另一個(gè)視圖中擴(kuò)展視圖,為此,我們無(wú)需再次重復(fù)代碼。

extend() 方法用于擴(kuò)展 view 文件中的視圖。該方法接受一個(gè)參數(shù),即帶有路徑的視圖文件的名稱(chēng)。在提供視圖文件的名稱(chēng)時(shí)不要使用擴(kuò)展名 .ctp。

 

示例

在 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('extend',['controller'=>'extends','action'=>'index']);
   $builder->fallbacks();
});

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

 

src/controller/extendscontroller.php

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

src/template 和該目錄下創(chuàng)建一個(gè)目錄 extendsder 創(chuàng)建一個(gè)名為 header.php 的 view 文件。將以下代碼復(fù)制到該文件中。

 

src/template/extends/header.php

common header

fetch('content') ?>

extends 目錄下創(chuàng)建另一個(gè) view,名為 index.php。 在該文件中復(fù)制以下代碼。在這里,我們擴(kuò)展了上面的視圖 header.php.

 

src/template/extends/index.php

 $this--->extend('header'); ?>
this is an example of extending view.

通過(guò)訪(fǎng)問(wèn)以下 url http://localhost/cakephp4/extend 來(lái)執(zhí)行上面的例子

 

輸出

執(zhí)行后,您將收到以下輸出。

下一節(jié):cakephp 查看元素

cakephp 教程

相關(guān)文章