->メソッドapp/Http/Controllers/SiteController.phpを使用
class SiteController extends Controller{ // public function index(){ $first = 'first'; $last = 'last'; return view('welcome')->with('name',$first); //这个name是视图中的变量名,这里with的意思是将controller的这个$first赋值到view视图中的name变量。这样的话,视图就能够获取到值,然后显示。 }}
app/resources/views/welcome.blade.php
<div class="container"> <div class="content"> <div class="title">Laravel 5</div> {{$name}} //这里就是视图中的name变量 </div> </div>
app/Http/Controllers/SiteController.php
class SiteController extends Controller{ // public function index(){ return view('welcome')->with([ 'first-key'=> 'first', 'last-key'=>'last' ]); }}
app/resources/views/welcome.blade.php
<div class="container"> <div class="content"> <div class="title">Laravel 5</div> {{$first-key}}{{$last-key}} </div> </div>
app/Http/Controllers/SiteController.php
class SiteController extends Controller{ $data = []; $data['first] = 'first'; $data['last'] = 'last'; public function index(){ return view('welcome',$data); }}
ただしここでは配列が渡されていますが、使用する場合、実際には配列のキーを変数として直接使用することと同じです
app/resources/views/welcome.blade.php <div class="container"> <div class="content"> <div class="title">Laravel 5</div> {{$first}}{{$last}} </div> </div>
class SiteController extends Controller{ public function index(){ $first-key = 'first'; $last-key = 'last'; return view('welcome',compact('first-key','last-key')); //compact是php的基本命令,创建一个包含变量名和它们的值的数组,创建数组后,将变量名转为数组的key来传递到view里。 }}
app/resources/views/welcome.blade.php
<div class="container"> <div class="content"> <div class="title">Laravel 5</div> {{$first-key}}{{$last-key}} </div> </div>
This記事は Peter Yuan によって作成され、表示 - 非営利 2.5 中国本土に基づいてライセンスされています。 転載または引用する前に、著者に連絡し、著者名に署名し、記事の出典を示す必要があります。神のような少年 » Laravel がビューに変数を渡します