0

阿贾克斯代码:

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');
        }

模型:

public function getlowtohighprice() { $lowtohighQuery=$this->db->query("SELECT * FROM product group by price order by price ASC");

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

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

4

1 回答 1

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); 
}
于 2013-09-12T11:52:08.727 回答