0

我正在构建我的评论模块并试图让活动记录显示在视图中。看起来很简单,但是我有很多事情要做,并使用单独的模型和控制器,然后生成视图。

所以我有一个个人资料页面(我试图在其中显示结果)

控制器:

public function profile() 
      {
            $this->load->helper('url'); //Include this line
            $this->load->helper('date');
            $this->load->library('session');
            $this->load->library('form_validation');
            $session_id = $this->session->userdata('id'); //Ensure that this session is valid


            //TRYING TO MAKE A VARIABLE WITHT THE $_GET VALUE
            $user_get = $this->uri->segment(3); // Modify this line


            // LOAD THE CORRECT USER
            $this->load->model('account_model');
            $user = $this->account_model->user($user_get); //(suggestion) you want to pass the id here to filter your record

            $data['user'] = $user;
            $data['session_id'] = $session_id;




            if($user_get != $user['id'] || !$user_get)
            {
                $data['main_content'] = 'account/notfound';
                $this->load->view('includes/templates/profile_template', $data);
            }
            else
            {

            if($user_get == $session_id) //Modify this line also
            {
                $data['profile_icon'] = 'edit';
            }
            else
            {
                $data['profile_icon'] = 'profile';
            }
            $sharpie = $this->sharpie($user);
            $data['sharpie'] = $sharpie;
            $data['main_content'] = 'account/profile';
            $this->load->view('includes/templates/profile_template', $data);
            }

        }

现在我有一个新的控制器来显示我想要显示的评论:

public function airwave() {
        $this->load->helper('date');
        $this->load->library('session');
        $airwave_get = $this->uri->segment(3); 
        $this->load->model('community_model');
        $airwave = $this->coummunity_model->airwave($airwave_get); 
        $data['airwave'] = $airwave;
        $data['main_content'] = 'account/profile';
        $this->load->view('includes/templates/main_page_template', $data);
    }

使用此模型:

public function airwave($id=null) 
        {
            if(is_null($id)) {
                $session = $this->session->userdata('is_logged_in');
                $commenter_id = $this->session->userdata('id');
            }else{
                $commenter_id = intval($id);
            }

            $query = $this->db->query("SELECT * FROM airwaves_comments WHERE from_id=$commenter_id");
            if($query->num_rows()==1)
            {
               $data = $query->result_array();
               return $data[0];
            //above returns the single row you need to the controller as an array.
            //to the $data['user'] variable.

            }

        }

并尝试在此视图上显示它(由配置文件功能生成)

<div class="profile_airwave_comment_text">
    <?php echo $airwave['comment'];?>
</div>

我似乎无法让它将我正确创建的数组变量传递给该视图?

提前致谢。

4

2 回答 2

1

我看到错误的第一件事是在你模型的电波函数中:

        if($query->num_rows()==1)
        {
           $data = $query->result_array();
           return $data[0];

您假设查询中只有一个结果,因此如果多于或少于一个,您的 $data 数组将被设置。

此外,即使那样,您也只返回数组中的第一个元素。在您的问题中,我没有看到您只想返回一个。

最后,在您看来,如果您现在返回整个数组,而不仅仅是一个元素,您将不得不执行一个 foreach 语句。

编辑:请参阅建议的解决方案。

在您的模型中,不必担心检查结果数组中的数据量。这将在稍后出现。只需这样做:

return $query->result_array();

现在,保持你的控制器不变,但调整你的视图:

<div class="profile_airwave_comment_text">
<?php 
    if (isset($airwave) && is_array($airwave) && !empty($airwave))
    {
        foreach ($airwave as $wave)
        {
            echo $wave['comment'];
        }
    }
    else
    {
        echo 'No comments found...';
    }
?>
</div>

这应该有效,如果没有,至少让您知道没有评论是喜欢的,从而检查您的数据库。

于 2013-04-12T11:09:27.550 回答
0

如果您使用 HMVC,只需从配置文件视图中调用模块,即:

echo Modules::run('comments/profileComments', $user->id);

否则:您需要在加载器类中创建一个新方法,以便在控制器中加载与路由分开。

如果你真的在快速修复之后直到你想出一个更好的选择,你可以(取决于两个控制器是否位于同一个目录中)只需在你的'profile'控制器中包含'comments'控制器并尝试这样的事情:

{缺点:CI 分页不起作用!}

应用程序/控制器/profile.php

include 'Comments' . EXT;

class Profile extends CI_Controller{

    public function __construct ()
    {
        parent::__construct () ;

    }

    public function index( $user_id ){

        $commentsPartialView = call_user_func_array(array(new Comments(), "getProfileComments"), array($user_id));

        return $this->load->view($this->template, array(
               'view' => 'profiles/_index',
               'comments' => $commentsPartialView
        ));
    }


}

-

应用程序/控制器/Comments.php

class Comments extends CI_Controller{

    public function __construct ()
    {
        parent::__construct () ;

    }

    public function getProfileComments( $user_id ){

        $user_comments = ''; //pull from DB

        //set third param to TRUE for partial view, without main template
        return $this->load->view('comments/show', array(
               'user_comments' => $user_comments
        ), TRUE);
    }


}
于 2013-04-13T06:13:09.923 回答