douhuzhi0907 2016-07-01 01:08
浏览 103
已采纳

在控制器中设置默认布局(Laravel 5.2)

I'd like to set a default layout in my BaseController, so that it is used for every view I have. I don't want to use "@extends" in every single view.

In Laravel 4 this was easy to do. Now I can't find any way to do this in Laravel 5.2 .

Does anyone have an idea?

BTW: this is my first question on stackoverflow, I hope i'm following the rules.

  • 写回答

1条回答 默认 最新

  • dousha7645 2016-07-02 01:25
    关注

    I found the solution. Kind of dumb of me not to look deeper into the Laravel 4 code. I thought layouts were chained somewhere deep in the core, but it was just the Controller, which has a "callAction" function. This function sets up the layout and then calls the right method.

    Below is the code for this, taken from here:

    https://laracasts.com/discuss/channels/general-discussion/laravel-5-this-layout-content-not-working

    <?php namespace App\Http\Controllers;
    
    use Illuminate\Routing\Controller;
    
    class BaseController extends Controller {
    
    protected $layout = 'core::layouts.default';
    
    /**
     * Show the user profile.
     */
    public function setContent($view, $data = [])
    {
    
        if ( ! is_null($this->layout))
        {
            return $this->layout->nest('child', $view, $data);
        }
    
        return view($view, $data);
    
    }
    
    /**
     * Set the layout used by the controller.
     *
     * @param $name
     * @return void
     */
    protected function setLayout($name)
    {
        $this->layout = $name;
    }
    
    /**
     * Setup the layout used by the controller.
     *
     * @return void
     */
    protected function setupLayout()
    {
        if ( ! is_null($this->layout))
        {
            $this->layout = view($this->layout);
        }
    }
    
    
    public function callAction($method, $parameters)
    {
        $this->setupLayout();
    
        $response = call_user_func_array(array($this, $method), $parameters);
    
    
        if (is_null($response) && ! is_null($this->layout))
        {
            $response = $this->layout;
        }
    
        return $response;
    }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)