網頁的某些部分在多個網頁上重複,但位於不同的位置。 CakePHP可以幫助我們重複使用這些重複的部分。這些可重複使用的部分稱為元素 - 幫助框、額外選單、等。元素基本上就是一個迷你視圖。我們也可以在元素中傳遞變數。
Cake\View\View::element(string $elementPath, array $data, array $options =[]
上述函數有三個參數,如下 -
第一個參數是 /src/Template/element/ 資料夾中範本檔案的名稱。
第二個參數是可供渲染視圖使用的資料數組。
第三個參數用於選項陣列。例如緩存。
三個參數中,第一個是必填的,其餘是可選的。
在 src/Template/element 目錄中建立一個名為 helloworld.php 的元素檔案。 將以下程式碼複製到該檔案中。
<p>Hello World</p>
在src/Template處建立一個資料夾Elems,並在該目錄下建立一個名為index.php的View檔案。將以下程式碼複製到該文件中。
Element Example: <?php echo $this->element('helloworld'); ?>
在 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 檔案。 將以下程式碼複製到控制器檔案中。
<?php namespace App\Controller; use App\Controller\AppController; class ElemsController extends AppController{ public function index(){ } } ?>
透過造訪以下 URL http://localhost/cakephp4/element-example
執行上面的範例執行後,上面的 URL 將給出以下輸出。
以上是CakePHP 視圖元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!