未定义的索引体

时间:2013-07-24 18:26:06

标签: php codeigniter templates

我正在试图找出为什么当我加载这个控制器时,当我使用库的构建方法建立主体时,它会显示未定义的索引体。我正在使用phil sturgeon的1.9版模板库。

<?php

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

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

public function index()
{

    $this->template
        ->title('Control Panel')
        ->set_layout('control_panel_view')
        ->set_partial('sidebar', 'partials/sidebar')
        ->build('dashboard_view');
    //echo '<pre>';
    //var_dump($this->template);
    //echo '</pre>';
    //die();
}
}

这是相同的布局减去我用于登录视图的侧边栏。它装得很好。

<!DOCTYPE HTML>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>    <html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>    <html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->

<head>
<title><?php echo $template['title']; ?></title>

<?php echo $template['partials']['header']; ?>

</head>

<body>

<!-- Start Content -->
<div class="container-fluid login">

    <div id="wrapper">

        <?php echo $template['partials']['sidebar']; ?>

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

    </div>

</div>

<?php echo $template['partials']['footer']; ?>

</body>

 </html>

编辑:

我仍然遇到这方面的问题,似乎无法解决这个问题。任何想法。

1 个答案:

答案 0 :(得分:1)

您获得的任何错误都不是您发布的任何代码。但它应该带有文件名和行号。

在某处寻找$something['body']之类的东西。该数组索引未设置,但您仍尝试使用它。

您没有设置$template['body']。使用php中的模板对象来执行此操作。这样做

$this->template
    ->title('Control Panel')
    ->set_layout('control_panel_view')
    ->set_partial('sidebar', 'partials/sidebar')
    ->set('body', 'body content!')
    ->build('dashboard_view');

显然,您希望将“正文内容”更改为您的内容最终会是什么。