douou1872 2017-06-13 00:33
浏览 12
已采纳

AJAX数据没有传递给PHP

I am having trouble passing AJAX data to PHP. I am experienced with PHP but new to JavaScript.

HTML / JavaScript

<input type="text" id="commodity_code"><button id="button"> = </button>

<script id="source" language="javascript" type="text/javascript">

$('#button').click(function()
{
  var commodity_code = $('#commodity_code').val();

  $.ajax({                                      
  url: 'get_code.php',  
  data: "commodity_code: commodity_code",
  dataType: 'json',
  success:function(data) {
        var commodity_desc = data[0];
        alert(commodity_desc);
    }  
  });
}); 

</script>

PHP

$commodity_code = $_POST['commodity_code'];

$result = mysql_query("SELECT description FROM oc_commodity_codes WHERE code = '$commodity_code'");
$array = mysql_fetch_row($result);
echo json_encode($array);

I know the general AJAX fetch and PHP code is working as I can manually create the $commodity_code variable and the script works fine. I think my issue lies somewhere in passing the AJAX data to my PHP script.

  • 写回答

2条回答 默认 最新

  • doumou3883 2017-06-13 00:34
    关注

    You forgot to add the method: 'POST' in your AJAX Call. And you have some issues with your call. Check below:

    $.ajax({                                      
      url: 'get_code.php',
      method: "POST",                         // Change here.
      data: {commodity_code: commodity_code}, // Change here.
      dataType: 'json',                       
      success:function(data) {
            var commodity_desc = data[0];
            alert(commodity_desc);
      }  
    });
    

    Or to make it simple, use the shorthand function:

    $.post('get_code.php', {commodity_code: commodity_code}, function(data) {
      var commodity_desc = data[0];
      alert(commodity_desc);
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部