精品国语人妻色乱码二区,免费乱理伦片在线观看2018,日韩精品视频在线播放,高潮无码又爽又刺激视频在线

<source id="8jepl"><menu id="8jepl"></menu></source>
    <source id="8jepl"><menu id="8jepl"></menu></source>
    <rp id="8jepl"><mark id="8jepl"><label id="8jepl"></label></mark></rp>
          <source id="8jepl"><menu id="8jepl"><label id="8jepl"></label></menu></source>
          <source id="8jepl"></source>
              <source id="8jepl"></source>
                <video id="8jepl"><menu id="8jepl"></menu></video>
                0712-2888027 189-8648-0214
                微信公眾號

                孝感風信網(wǎng)絡科技有限公司微信公眾號

                當前位置:主頁 > 技術支持 > PHP > Laravel Controller控制器傳值到View視圖的幾種方法

                Laravel Controller控制器傳值到View視圖的幾種方法

                時間:2019-01-08來源:風信官網(wǎng) 點擊: 1418次

                總體內(nèi)容分為傳值類型和方法,大概總體感覺如下。

                傳值類型:一個值,多個值,數(shù)組。
                方法: with,view,compact
                默認視圖 test文件下index.blade.php

                單個值的傳遞

                with

                public function index() {
                  $test = "測試";
                  return view('test.index')->with('test',$test);
                }

                view

                public function index() {
                    return view('test.index', ['test' => '測試']);
                }

                compact

                public function index() {
                  $test = "測試";
                  return view('test.index',compact('test'));
                }

                多個值的傳遞

                with

                public function index() {
                  return view('test.index')->with(["test1" => "測試1", "test2" => "測試2", "test3" => "測試3"]);
                }

                view

                public function index() {
                  return view('test.index', ['test1' => '測試1','test2' => '測試2','test3' => '測試3']);
                }

                compact

                public function index() {
                  $test_1 = "測試1";
                  $test_2 = "測試2";
                  $test_2 = "測試3";
                  return view('test.index',compact('test_1','test_2' ,'test_3' ));
                }

                數(shù)組的傳遞

                with

                public function index() {
                  $data = array( 'test1' => '測試1', 'test2' => '測試2', 'test3' => '測試3' );
                  return view('test.index')->with($data);
                }

                view

                public function index() {
                  $data["test1"] = "測試1";
                  $data["test2"] = "測試2";
                  $data["test3"] = "測試3";
                  return view('test.index',$data);
                }

                compact

                //推薦此種方法
                public function index() {
                  $test_array = ["測試1","測試2", "測試2"];
                  return view('test.index',compact('test_array'));
                }
                欄目列表
                推薦內(nèi)容
                熱點內(nèi)容
                展開