1

这是我第一次使用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 外部的视图中,它可以工作,但不能在 foreach 内部。我使用 if($news) 来确定查询是否检索到任何结果,但没有检索到结果。

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

4

2 回答 2

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; ?>
于 2013-12-30T04:52:24.627 回答
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

... 等等

于 2013-08-30T17:02:19.897 回答