2

我正在使用 codeigniter,我在使用 jQuery$.post函数处理数据时遇到了问题。subjectid我想发送一个值,例如ajax_get_subject_credit函数并检索同一个数据库表中的另一个字段。结果显示在另一个文本字段中。这是我的代码。

看法:

$.post('<?php echo site_url('academic/ajax_get_subject_credit'); ?>', {'subjectid':subjectid}, function(data){

        $('#chours' + id).val(data); });

这从下拉列表中获取一个值,我想从下拉列表中自动填充一个文本字段。#chours是文本字段 ID。

控制器:

function ajax_get_subject_credit($result)
{
    $this->db->select('subjectid, subjectcredit');
    $query = $this->db->get('ref_subject');
    $result = $query->result_array();
    $query->free_result();
    $subjectid = array();
    foreach($result as $row)
    {
        $result = $result + array($row['subjectid'] => $row['subjectcredit']);
    }
    return $result;
}

在控制器中修改

我还尝试在控制器中使用此语句直接调用该字段但仍然没有成功:

function ajax_get_subject_credit($subjectid)
{
    $this->db->select('subjectid, subjectcredit');
    $this->db->where('subjectid',$subjectid);
    $query = $this->db->get('ref_subject');
    $credithour = $query->row()->subjectcredit;
    $query->free_result();
    echo $credithour;
}
4

4 回答 4

7

我将在这里提供一个通用示例

在视图文件中

$.post('<?php echo site_url("test/test"); ?>', {'id':1}, function(response){

   if(response.success)
   {
     alert(response.message);
   } else
   {
     alert('Something went wrong!!');
   }
}, 'json');

在控制器 Test.php

function test()
{
  $id = $this->input->post('id');

  //do additional stuff

  $result = 'i am coming right out of controller!! ';

  echo json_encode(array('success' => true, 'message' => $result));
}
于 2013-04-01T16:41:52.920 回答
3

不要使用return将值返回给 AJAX。采用echo

改变这个,

return $result;

echo $result;
于 2013-04-01T15:11:29.793 回答
0

如果您希望您的方法返回 javascript 可用于填充下拉列表的数组,您可能不想返回字符串。

尝试这样的事情:

function ajax_get_subject_credit()
{
    $query = $this->db->select('subjectid, subjectcredit')->get('ref_subject');

    $result = $query->result();

    $out = array();
    foreach($result as $row) {
        $out[$row->subjectid] = $row->subject_credit;
    }

    header('Content-Type: application/json');
    echo json_encode($out);

}

这将向您的视图返回一个 JSON 数组,您的 javascript 方法可以使用它来使用值和标签填充下拉列表。

于 2013-04-01T15:31:08.963 回答
0

这是我的结果:

在视图中:

function subjectid_change(id, subjectid){
    //Set value
    setValue(id, subjectid);

    $.post('<?php echo site_url('academic/ajax_get_subject_credit'); ?>', {'subjectid':subjectid}, function(response){

        if(response.success)
        {
          $('#chours' + id).val(response.value);
        } else
        {
          alert('Something went wrong!!');
        }
    }, 'json'); }

我的控制器:

function ajax_get_subject_credit()
{
    //Get Post Value
    $subjectid = $this->input->post('subjectid');
    //Select subjectid,subjectcredit FROM
    $this->db->select('subjectid, subjectcredit');
    //Where subjectid = 'subjectid'
    $this->db->where('subjectid',$subjectid);
    //Database name
    $query = $this->db->get('ref_subject');

    $credithour = $query->row()->subjectcredit;
    $query->free_result();
    $result = $credithour;

    echo json_encode(array('success' => true, 'value' => $result));
}

感谢所有帮助过我的人。

于 2013-04-02T07:41:51.943 回答