1

所以这是我的第一个 Codeigniter 项目,我即将提交 seppuku。

情况如下:

我有一个图片库。当用户将鼠标悬停在其中一个上时,侧 div 会填充 AJAX 调用的更多信息。

我只是无法让它工作。我一直在 Dev Tools>Network>XHR 中得到这个:

Not Found

The requested URL /ajax/getMoreInfo was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

我究竟做错了什么?如果有人想放弃一些“最佳实践”,我会全力以赴。具体来说.. 我看到了其他例子,其中 ajax 参数是通过使用 $.post (ajax/getMoreInfo/ID) 发送的 URL 传递的,而不是像我在这里做的那样作为变量。我完全错了吗?(即使我认为这不是我的 404 的原因)。

这是我在悬停时调用的 JS 函数

function showDataWindow(){

    var thisClass = $(this).attr('class');
    var thisIDpos = thisClass.indexOf("id-")+3;
    var thisID = thisClass.substr(thisIDpos, 3);
    /// alert(thisID) <- alerts correctly
    $.post('ajax/getMoreInfo', 
        { ID: thisID },
        function(data) {
            .. do stuff with data

我在 /controllers 中有一个名为 ajax.php 的控制器

<?php

class Ajax extends CI_Controller {

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

  public function getMoreInfo()
 {
      $ID = $this->input->post('ID');
      $this->load->model('Artist_model','',TRUE);
      $more_info = $this->Artist_model->get_more_info($ID);
      echo json_encode($more_info);
  }
}

我在 /models 中的模型...

<?php 
class Artist_model extends CI_Model {

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

public function get_more_info($ID)
{        
        $query = $this->db->query('SELECT * FROM `NOIRusers` WHERE `UID` = `$ID`');
        if ($query->num_rows() > 0)
        {
           foreach ($query->result() as $result)
           {

                $moreInfo['memberID'] =$result->UID;
                $moreInfo['firstName'] =$result->UFname;
                $moreInfo['lastName'] =$result->ULname;
                $moreInfo['large_image_location'] =$result->large_image_location;

                ..more of these..
           }
        }  
}

谢谢你的帮助!

4

3 回答 3

2

我认为这是一个 htaccess 问题。尝试在您的 .htaccess 文件中使用以下内容。

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
于 2012-07-06T09:07:57.103 回答
1

您是否已将其添加到 routes.php 中?

http://codeigniter.com/user_guide/general/routing.html

您需要在此处添加它,以便 CI 知道如何处理“ajax”。

于 2012-07-06T09:04:02.330 回答
0

如果您可以正确传递 id,请尝试以下查询。

SELECT * FROM NOIRusers WHERE UID = '".$ID."'";

通常codeigniter使用像

$this->db->select('*');
$this->db->from('NOIRusers');
$this->db->where('UID',$ID);
于 2012-07-06T10:19:06.127 回答