0

我有一个宠物数据库,基本上我想通过它的 ID 查看宠物的详细信息。这是我的 Controller 方法的样子:

public function details()
{
    $this->load->model('animalsmodel');
    $row = $this->animalsmodel->details($this->uri->segment(3));
    $this->load->view('shared/header');
    $this->load->view('animals/details', $row);
    $this->load->view('shared/footer');
}

这是AnimalsModel获取相关行的代码:

function details($animalId) {
    $q = $this->db->query('SELECT Animals.Name, Animals.DateAdmitted, Animals.FoundDescription, Animals.Description, Animals.Neutered, Animals.DateNeutered, Types.Name AS Type, Healthchecks.CheckInfo FROM Animals LEFT JOIN Types ON Animals.TypeId = Types.TypeId LEFT JOIN Healthchecks ON Animals.HealthcheckId = Healthchecks.HealthcheckId WHERE Animals.AnimalId = ?', $animalId);
    if ($q->num_rows() > 0)
    {
        $row = $q->row();
        return $row;
    } else
    {
        echo "No Results Man!!";
    }
}

我已经在 phpMyAdmin 中手动运行了那个 MySQL 查询,它可以工作,它让我得到了正确的行。

编辑:我刚刚var_dump()在 $row 对象上做了一个,我得到了以下信息:

object(stdClass)#17 (8) { ["Name"]=> string(6) "Quemby" ["DateAdmitted"]=> string(10) "2013-01-28" ["FoundDescription"]=> string(94) "The story of how I got to be here. Phasellus ornare. Fusce mollis. Duis sit amet diam eu dolor" ["Description"]=> string(65) "massa non ante bibendum ullamcorper. Duis cursus, diam at pretium" ["Neutered"]=> string(1) "0" ["DateNeutered"]=> string(10) "0000-00-00" ["Type"]=> string(3) "Dog" ["CheckInfo"]=> string(26) "a, facilisis non, bibendum" }

所以看起来我有我的行!但是为什么CI一直在抱怨Undefined variable: row:(

4

2 回答 2

0

您可以使用以下方法检查 CI 中的最后一个查询

    <pre> <?php print_r($this->db->last_query()) ?> </pre>

然后复制过去并在 phpMyadmin 或您使用的任何工具中尝试。

为了更好的结果/审查/维护你的模型代码应该是这样的

  function details($animalId) {
$this->db->select('Animals.Name, Animals.DateAdmitted, Animals.FoundDescription,...');
$this->db->where('AnimalId', $animalId);
$this->db->join('Types'       , 'Types.TypeId               = Animals.TypeId'       , 'left');
$this->db->join('Healthchecks', 'Healthchecks.HealthcheckId = Animals.HealthcheckId', 'left');
$this->db->from('Animals');
$q = $this->db->get();

if ($q->num_rows() > 0)
{
    $row = $q->row();
    return $row;
} else
{
    echo "No Results Man!!";
}

}

最后一件事是:在 CI 中,最好使用如下名称: mymodelname_model 不是 myModelNameModel 在你的情况下 animals_model 不是 animalmodel

这就是 CI 用户的做法 :)

享受您的代码

于 2013-04-29T12:52:09.337 回答
0

请试试这个

public function details()
{
    $this->load->model('animalsmodel');
    $row = $this->animalsmodel->details($this->uri->segment(3));
    $data['row'] = $row;
    $this->load->view('shared/header');
    $this->load->view('animals/details', $data);
    $this->load->view('shared/footer');
}

现在尝试访问视图中的数据。

于 2013-04-29T08:37:26.577 回答