1

我在我的视图文件中收到此错误。这是我的代码,请帮帮我并告诉我该怎么做?

<?php 
//foreach($records->result() as $row):
foreach(result() as $row):
 echo $row->title;
endforeach;
?>

这是我的控制器文件:

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

class Hello extends CI_Controller
{
    public function index()
    {
        $this->load->model('hello_model');
        $data['records']=$this->hello_model->getAll();
        $this->load->view('you_view',$data);
        //$this->load->view('you_view');
    }
}
?>

我也在这里发布我的模型文件。我尝试了一些,但仍然出现此错误。Dnt 知道要做什么。

<?php

class Hello_model extends CI_Model
{
    function __construct()
    {
        // Call the Model constructor
        parent::__construct();
    }

    function getAll()
    {
    $q=$this->db->get('test'); // query where 'test' is table name.

        if($q->num_rows()>0)
        {
           foreach ($q->result() as $row)
           {
              $data[]=$row;
           }
        return $data;
        }
    }
}
?>
4

2 回答 2

1

$records已经保存了您的数据,所以这应该可以工作:

foreach($records as $row){
    echo $row->title;
}
于 2012-10-18T12:21:05.470 回答
0

您不需要在视图中使用 result(),因为在您的模型中您已经这样做了。

试试这个:

 <?php 
 foreach($records as $row):
 echo $row->title;
 endforeach;
 ?>
于 2012-10-18T12:02:54.880 回答