您好,登錄后才能下訂單哦!
這篇文章主要講解了“如何理解Laravel視圖間共享數(shù)據(jù)與視圖Composer”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“如何理解Laravel視圖間共享數(shù)據(jù)與視圖Composer”吧!
1、在視圖間共享數(shù)據(jù)
除了在單個(gè)視圖中傳遞指定數(shù)據(jù)之外,有時(shí)候需要在所有視圖中傳入同一數(shù)據(jù),即我們需要在不同視圖中共享數(shù)據(jù)。要實(shí)現(xiàn)這一目的,需要使用視圖工廠的share
方法。
全局幫助函數(shù)view
和response
類似,如果傳入?yún)?shù),則返回Illuminate\View\View
實(shí)例,不傳入?yún)?shù)則返回Illuminate\View\Factory
實(shí)例。所以我們可以通過在服務(wù)提供者的boot
方法中使用如下方式實(shí)現(xiàn)視圖間共享數(shù)據(jù):
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { //視圖間共享數(shù)據(jù) view()->share('sitename','Laravel學(xué)院'); } /** * Register any application services. * * @return void */ public function register() { // } }
我們?cè)?code>routes.php中定義兩個(gè)路由:
Route::get('testViewHello',function(){ return view('hello'); }); Route::get('testViewHome',function(){ return view('home'); });
然后在resources/views
目錄下創(chuàng)建一個(gè)home.blade.php
視圖文件,內(nèi)容如下:
{{$sitename}}首頁
再創(chuàng)建一個(gè)hello.blade.php
視圖文件:
歡迎來到{{$sitename}}!
在瀏覽器中分別訪問http://laravel.app:8000/testViewHello
和http://laravel.app:8000/testViewHome
,則都能解析出$sitename
的值。
2、視圖Composer
有時(shí)候我們想要在每次視圖渲染時(shí)綁定一些特定數(shù)據(jù)到視圖中,比如登錄用戶信息,這時(shí)候我們就要用到視圖Composer,視圖Composer通過視圖工廠的composer方法實(shí)現(xiàn)。該方法的第二個(gè)回調(diào)參數(shù)支持基于控制器動(dòng)作和閉包函數(shù)兩種方式。
簡單起見,我們還是基于AppServiceProvider
,不去單獨(dú)創(chuàng)建服務(wù)提供者,這里我們傳遞閉包參數(shù)(控制器動(dòng)作參考視圖文檔):
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { //視圖間共享數(shù)據(jù) view()->share('sitename','Laravel學(xué)院'); //視圖Composer view()->composer('hello',function($view){ $view->with('user',array('name'=>'test','avatar'=>'/path/to/test.jpg')); }); } /** * Register any application services. * * @return void */ public function register() { // } }
修改hello.blade.php
視圖文件:
歡迎來到{{$sitename}}!
<h4>用戶信息</h4> 用戶名:{{$user['name']}}<br> 用戶頭像:{{$user['avatar']}}
在瀏覽器中訪問http://laravel.app:8000/testViewHello
,輸出內(nèi)容如下:
歡迎來到Laravel學(xué)院! 用戶信息 用戶名:test 用戶頭像:/path/to/test.jpg
你也可以傳遞數(shù)據(jù)到多個(gè)視圖:
view()->composer(['hello','home'],function($view){ $view->with('user',array('name'=>'test','avatar'=>'/path/to/test.jpg')); });
甚至所有視圖(使用通配符*):
view()->composer('*',function($view){ $view->with('user',array('name'=>'test','avatar'=>'/path/to/test.jpg')); });
感謝各位的閱讀,以上就是“如何理解Laravel視圖間共享數(shù)據(jù)與視圖Composer”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)如何理解Laravel視圖間共享數(shù)據(jù)與視圖Composer這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。