Laravel向视图传递变量
程序员文章站
2022-06-12 09:36:19
...
传递变量
->with方法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
Laravel 5{{$name}} //这里就是视图中的name变量
传递数组
通过->with方法来传递数组
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
Laravel 5{{$first-key}}{{$last-key}}
或者通过直接传递一个数组
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.phpLaravel 5{{$first}}{{$last}}
或者通过compact
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
Laravel 5{{$first-key}}{{$last-key}}
本文由 PeterYuan 创作,采用 署名-非商业性使用 2.5 * 进行许可。 转载、引用前需联系作者,并署名作者且注明文章出处。神一样的少年 » Laravel向视图传递变量
上一篇: Oracle 高水位线详解
下一篇: 这句在php得如何写才好?