使用codeIgniter查询结果

时间:2012-06-23 22:21:38

标签: php mysql codeigniter

这是我第一次使用codeIgniter,我尝试构建一个简单的数据库驱动的应用程序。 首先是模型:

class News_model extends CI_Model {

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

public function get_news()
   {

    $query = $this->db->get('news');
    return $query->result_array();

   }
   }

第二个控制器

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();
$data['title'] = 'News archive';

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

视图“索引”:

<?php foreach ($news as $news_item): ?>

 <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 ?>

当我运行代码时,它显示页眉和页脚,但不显示数据库记录。 如果我在foreach之外的视图中放置一个print语句,它可以工作,但不在foreach中。 我使用if($ news)来查明查询是否检索到任何结果,但是没有检索到结果。

我怎么知道为什么没有从数据库中检索到结果?

2 个答案:

答案 0 :(得分:0)

你需要在你的foreach中召唤另一个foreach。例如:

foreach ($result as $row) {
        foreach ($row as $key => $val) {
            if ($key === "reservation_info") {
                $data['decoded'] = json_decode($val);
            } else {
                $data[$key] = $val;
            }
        }
    }

我会在视图中使用'$ val'值。只需将它们称为变量,就像这样

//in the view
echo $decoded
echo $firtname

......等等

答案 1 :(得分:0)

检查new是否为空,只是

print_r($news);

或者您可以修改您的观点:

<?php if(!empty($new)): ?>
  <?php foreach ($news as $news_item): ?>

   <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 else: ?>
  Empty news 
<?php endif; ?>