首页 文章

CodeIgniter教程中使用foreach循环的错误

提问于
浏览
0

我正在尝试通过CodeIgniter教程,我的新闻页面将不会从foreach循环输出数据 . 我收到以下消息:

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: news

Filename: pages/index.php

Line Number: 1

A PHP Error was encountered

Severity: Warning

Message: Invalid argument supplied for foreach()

Filename: pages/index.php

Line Number: 1

这是我的模型类:

<?php
class News_model extends CI_Model {

public function __construct()
{
    $this->load->database();
}


public function get_news($slug = FALSE)
{
if ($slug === FALSE)
{
    $query = $this->db->get('news');
    return $query->result_array();
}

$query = $this->db->get_where('news', array('slug' => $slug));
return $query->row_array();
}


public function index()
{
$data['news'] = $this->news_model->get_news();
$data['title'] = 'News archive';

$this->load->view('templates/header', $data);
$this->load->view('news/index', $data);
$this->load->view('templates/footer');
}
}

而我的控制器:

class News extends CI_Controller {

public function __construct()
{
    parent::__construct();
    $this->load->model('news_model');
}

public function index()
{
    $data['news'] = $this->news_model->get_news();
}


public function view($slug)
{
    $data['news_item'] = $this->news_model->get_news($slug);

    if (empty($data['news_item']))
    {
        show_404();
    }

    $data['title'] = $data['news_item']['title'];

    $this->load->view('templates/header', $data);
    $this->load->view('news/view', $data);
    $this->load->view('templates/footer');
}

}

并且第一个观点:

<h2><?php echo $news_item['title'] ?></h2>
    <div id="main">
        <?php echo $news_item['text'] ?>
    </div>
    <p><a href="news/<?php echo $news_item['slug'] ?>">View article</a></p>

<?php endforeach ?>

第二个:

<?php
echo '<h2>'.$news_item['title'].'</h2>';
echo $news_item['text'];

我知道有关于该教程的其他问题,但似乎没有人帮助我 .

谢谢 .

1 回答

  • 1

    在模型中,你已经在构造函数后关闭了你的类 . 所有功能都应该关闭 . view()也被初始化两次 .

相关问题