4

我正在使用 phil sturgeon 创建的相同模板库,并且我的控制面板具有以下布局。我收到这个错误。我在控制面板控制器内的模板变量上运行了一个 var_dump,它显示了控制面板视图的字符串,但是当我在内容视图中做同样的事情时,它说没有正文索引。我想知道如何将数据传递给内容视图。

对我有什么想法吗?

Severity: Notice

Message: Undefined index: body

Filename: partials/content.php

Line Number: 8

控制面板控制器

<?php

if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Controlpanel extends Backend_Controller
{
    public function __construct()
    {
        parent::__construct();
    }

    public function index()
    {
        $this->template
            ->title('Control Panel')
            ->set_layout('controlpanel')
            ->set_partial('header', 'partials/header')
            ->set_partial('sidebar', 'partials/sidebar')
            ->set_partial('breadcrumbs', 'partials/breadcrumbs')
            ->set_partial('content', 'partials/content')
            ->set('user_data', $this->users_model->get($this->session->userdata('uid')))
            ->build('dashboard');
    }
}

内容.php

<div id="content">

    <!--    Insert Header    -->
    <?php echo $template['partials']['breadcrumbs']; ?>

    <div class="separator bottom"></div>

    <?php echo $template['body']; ?>

</div>

我已经尝试过对此进行调查,但仍然没有找到解决方案。我希望其他人可能会看到我没有看到的东西。

4

2 回答 2

1

我也使用他的库,并且在传递对象时遇到了一些问题

$this->template->set('data_name', $my_object);

只需将其转换为数组。

$this->template->set('data_name', (array) $my_object);
于 2013-06-07T23:33:47.923 回答
1

以下对我有用:

$this->template->set('body', $body);

然后在我看来(使用 PyroCMS lex 解析器):

{{ body }}

或者,您可以将数组分配给 set 方法:

// $page 来自数据库查询

$this->template->set('page', $page);

然后在视图中:

{{ page->body }}
于 2013-06-13T18:02:30.687 回答