Ajax价格过滤Codeigniter

时间:2013-09-12 10:02:37

标签: php ajax codeigniter

Ajax代码:

function showProduct(baseurl,sortbyid)
{
    //alert('123');
if (sortbyid=="")
  {
    document.getElementById("sortMyData").innerHTML="";
  return;
  } 
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("sortMyData").value=xmlhttp.responseText;
    }
  }               
      url = baseurl + 'product/sortby/'+sortbyid; 
      //alert(url); 
    xmlhttp.open("GET", url, true);
    xmlhttp.send();   
    return false;
  }

控制器:

public function sortby()
        {
            $lowhigh=$this->uri->segment(3);
            $lowtohighprice=$this->product_model->getlowtohighprice($lowhigh);
            $this->load->view('sortby');
        }

型号:

公共职能getlowtohighprice()     {         $ lowtohighQuery = $ this-> db-> query(“按价格ASC按价格顺序选择* FROM产品组”);

    if($lowtohighQuery->num_rows() > 0)
    {
        foreach($lowtohighQuery->result_array() as $row)
        {
            $lowtohighpricedetails[]=$row;
        }
    return $lowtohighpricedetails; 
    }
}

我正在尝试使用ajax过滤器从低价到高价获取产品。我已经执行了查询,它工作正常。我是ajax的新手所以我希望用ajax代码来解决这个问题。我不知道我在哪里被困,我正在使用codeigniter框架。提前谢谢。

1 个答案:

答案 0 :(得分:0)

您必须将数据传递给视图,以便视图可以显示查询结果。

public function sortby()
{
    $lowhigh = $this->uri->segment(3);

    $lowtohighprice = $this->product_model->getlowtohighprice($lowhigh);

    // The second parameter $lowtohighprice is the data
    $this->load->view('sortby', $lowtohighprice); 
}