.done 成功但显示空数据

问题描述 投票:0回答:2

选择数量下拉按钮后,价格字段将相应更改。但是,我不断收到成功警报,但数据显示为空结果。

我尝试使用 success 而不是 did,但结果是一样的。我还删除了 datatype: json,仍然没有变化。

$('#qty').change(function(){
    var val = $(this).val();
    $.ajax({
          method: "GET",
          url: "someURLHERE", 
          data: { val: val},
          dataType: "html"
        })
          .done(function(data) {
              alert("Success" + data);
                $('#price').html(data);
                $('#price').trigger('change');
          }).fail(function()  {
                alert("Fail");
   })

});

这是我的模型:

  public function getPrice($product_id, $quantity){
       $sql = "SELECT price FROM `price_table` where quantity = '".$quantity."' and product_id = '".$product_id."' ";
       $query = $this->db->query($sql)->row_array();
       return $query;
   }

这是我的控制器:

public function getPrice(){
    $p_id = $_GET['p_id'];
    $qty = $_GET['qty_ag'];

    $price = $this->users_model->getPrice($prpduct_id, $quantity);
    json_ok($price);
}

现在,警报框返回:Success{"status":"OK","data":{"pv_value":"120.00"}}

我想要得到的只是值120.00

php jquery ajax
2个回答
0
投票

你的模型

getPrice()
方法必须返回一些东西。


0
投票

你说你删除了

dataType: "JSON"
,但是你在服务器端(PHP)返回什么类型的数据,以及如何返回它?

例如

如果您期望 JSON 类型的数据,那么您仍然可以在 JavaScript 中使用它:

$('#qty').change(function(){
    var val = $(this).val();

    $.ajax({
      method: "GET",
      url: "someURLHERE", 
      data: {
        val: val
      },
      dataType: "JSON" // notice I've returned it to JSON
    })
    .done(function(data){
      console.log("Success" + data); // notice I'm using "console.log"
      $('#price').html(data);
      $('#price').trigger('change');
    })
    .fail(function(){
      alert("Fail");
    })
});

但是,在服务器端,PHP 应该返回这样的数据:

<?php
  header("Content-Type: application/json");
  die(json_encode($yourData));
?>
© www.soinside.com 2019 - 2024. All rights reserved.