您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關如何在laravel5.1框架中使用Blade模板繼承,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
1.用法概要
@include('common.header')
包含子視圖
@extends('article.common.base')
繼承基礎模板
@yield('content')
視圖占位符
@section('content')
@endsection
繼承模板后向視圖占位符中填入內容
{{-- 注釋 --}}
Blade模板中注釋的使用
2.具體使用
2.1 新建Article基礎模板base.blade.php
直接使用Bootstrap4模板代碼及CDN,新建視圖基礎模板
路徑resources/views/article/common/base.blade.php
<!DOCTYPE html><html lang="en"> <head> <title>Artilce|標題在此</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css" rel="external nofollow" rel="external nofollow" > </head> <body> {{-- 包含頁頭 --}} @include('article.common.header') {{-- 繼承后插入的內容 --}} @yield('content') {{-- 包含頁腳 --}} @include('article.common.footer') <script src="http://ajax.useso.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.js"></script> </body> </html>
2.2. 建子視圖文件 頁頭和頁腳
頁頭文件 resources/views/article/common/header.blade.php
<nav class="navbar navbar-light bg-faded"> <div class="container"> <a class="navbar-brand" href="#" rel="external nofollow" rel="external nofollow" >Articles</a> <ul class="nav navbar-nav"> <li class="nav-item active"> <a class="nav-link" href="/article" rel="external nofollow" >首頁 <span class="sr-only">(current)</span></a> </li> <li class="nav-item"> <a class="nav-link" href="#" rel="external nofollow" rel="external nofollow" >寫文章</a> </li> </ul> <ul class="nav navbar-nav pull-right"> <li class="nav-item"> <a href="" class=" rel="external nofollow" rel="external nofollow" btn btn-primary-outline">登錄</a> </li> <li class="nav-item"> <a href="" class=" rel="external nofollow" rel="external nofollow" btn btn-success-outline">注冊</a> </li> </ul> </div> </nav>
頁腳文件 resources/views/article/common/footer.blade.php
<div class="footer" > <div class="container"> <h2 >Articles</h2> </div> </div>
2.3 即可繼承模板,實現復用
新建主頁文件在resources/views/article/index.blade.php
@extends('article.common.base') @section('content') <div class="container" > <h2 >繼承模板的主頁搞定了!</h2> {{-- 這里是Blade注釋 --}} </div> @endsection
2.4 如何訪問?
需要路由以及控制器配合,這里簡單只用路由實現,詳細內容請點擊,以及接下來的其它文段
在app/Http/routes.php 路由注冊文件寫上如下代碼
Route::get('/',function(){ return view('article.index'); });
啟動你的配置的laravel跑的服務器,比如我在目錄地址下php artisan serve
瀏覽器輸入 : localhost:8000,即可看到效果圖
3. 效果圖
articles效果圖|色彩 #00B388
X bootstrap4起始模板代碼
bootstrap4文檔
<!DOCTYPE html> <html lang="en"> <head> <!-- Required meta tags always come first --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css" rel="external nofollow" rel="external nofollow" > </head> <body> <h2>Hello, world!</h2> <!-- jQuery first, then Bootstrap JS. --> <script src="http://ajax.useso.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.js"></script> </body> </html>
以上就是如何在laravel5.1框架中使用Blade模板繼承,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。