【发布时间】:2015-01-06 02:53:04
【问题描述】:
我正在使用 la-ravel Teepluss 的主题管理器,但是当我绑定任何东西时,它会出现此错误:
缺少 Teepluss\Theme\Theme::Teepluss\Theme{closure}() 的参数 1
这里是错误截图
http://i.imgur.com/elQ5qLY.png
只需添加这一行 $this->theme->bind('active', 'home');到下面的代码给出错误
public function showWelcome()
{
$this->theme->layout('default');
$this->theme->setTitle($this->config['SEO']['home']['title']);
$this->theme->setMeta_desc($this->config['SEO']['home']['meta_description']);
$this->theme->setMeta_keywords($this->config['SEO']['home']['meta_keywords']);
$this->theme->bind('active', 'home');
return $this->theme->scope('home.index')->render();
}
我认为包主题绑定有一些问题
【问题讨论】: