所以这是我的第一个 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..
}
}
}
谢谢你的帮助!