首頁  >  文章  >  後端開發  >  CakePHP 視圖元素

CakePHP 視圖元素

王林
王林原創
2024-09-10 17:22:29574瀏覽

網頁的某些部分在多個網頁上重複,但位於不同的位置。 CakePHP可以幫助我們重複使用這些重複的部分。這些可重複使用的部分稱為元素 - 幫助框、額外選單、等。元素基本上就是一個迷你視圖。我們也可以在元素中傳遞變數。

Cake\View\View::element(string $elementPath, array $data, array $options =[]

上述函數有三個參數,如下 -

  • 第一個參數是 /src/Template/element/ 資料夾中範本檔案的名稱。

  • 第二個參數是可供渲染視圖使用的資料數組。

  • 第三個參數用於選項陣列。例如緩存。

三個參數中,第一個是必填的,其餘是可選的。

範例

src/Template/element 目錄中建立一個名為 helloworld.php 的元素檔案。 將以下程式碼複製到該檔案中。

src/Template/element/helloworld.php

<p>Hello World</p>

src/Template處建立一個資料夾Elems,並在該目錄下建立一個名為index.php的View檔案。將以下程式碼複製到該文件中。

src/Template/Elems/index.php

Element Example: <?php echo $this->element('helloworld'); ?>

config/routes.php 檔案中進行更改,如下列程式所示。

config/routes.php

<?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 建立 ElemsController.php 檔案。 將以下程式碼複製到控制器檔案中。

src/Controller/ElemsController.php

<?php
   namespace App\Controller;
   use App\Controller\AppController;
   class ElemsController extends AppController{
      public function index(){
      }
   }
?>

透過造訪以下 URL http://localhost/cakephp4/element-example

執行上面的範例

輸出

執行後,上面的 URL 將給出以下輸出。

Element Example

以上是CakePHP 視圖元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn