-1

これは私の

モデル

public function get_news($NewsId= FALSE)
    {
        if ($NewsId === FALSE)
        {
         $this->db->select('*');
         $this->db->from('news');
         $this->db->where('Status' , 1);
         $this->db->where('Language' , 2);

        return $query->result_array();
        $config['per_page']; $this->uri->segment(3);
        }
        $query = $this->db->get_where('news', array('NewsId' => $NewsId));
        return $query->row_array();

コントローラ

public function single($NewsId)
        {

        $data['news_item'] = $this->news_model->get_news($NewsId);
        if (empty($data['news_item']))
        {
        show_404();
        }
        $data['NewsId'] = $data['news_item']['NewsId'];

        $this->load->view('news/single', $data);

        }

見る

<?php echo $news_item['TittleNews'];?>

私はすべてのニューステーブルをforeachする他のビューを持っています。私は自分のコードで作成した 続きを読みたいと思っています.NewsIdと他の列でもっと読みたいと思っています.単独である私のビューで私を見せてください

4

1 に答える 1

0

次のようなモデル メソッドを使用できます。

 function getBy($data){
    foreach($data as $key=>$value){
      $this->db->where($key,$value);
    }

    $query = $this->db->get('users_table');
    return $query->row(); //or $query->result(); as you want
  }

それで、あなたはそれを

$this->model->getBy(
array(
'username'=>'Mark',
'id'=>'90',
'email'=>'asd@asd.com'
);
);

明らかに、モデルメソッドを可能な限り拡張できます

于 2013-04-05T10:24:40.310 に答える