Web App的接收数据较慢

时间:2013-09-12 03:07:53

标签: php jquery mysql ajax

我正在尝试制作销售点的网络应用程序。 我试图使用J-Query,Ajax从数据库MySQL接收数据。 但是,为什么它这么慢.. http://250109.hol.es/Coba/examples/coba.php

我想制作像这个例子的快速网络应用程序 http://250109.hol.es/Coba/examples/new.php(从JavaScript数组接收数据)

这是我的代码:(在Ajax中)

$.ajaxSetup({ async: false });
        $.ajax({  
            type: "POST",
            url: "weq.php",
            data: "id_barang="+id_barang,
            dataType: "json",
            cache: false,
            success: function(data){
                id_barang = data[0];
                nama_barang = data[1];
                satuan = data[3];
                harga_beli = data[4];
                harga_jual = data[5];
            }
        });

我的PHP

<?php
include ("../tes.php");
$id_barang = $_POST["id_barang"];
$hasil = mysql_query("select * from tb_barang where id_barang = $id_barang");
$array = mysql_fetch_row($hasil);
echo json_encode($array);
?>

echo json_encode($ array);

0 个答案:

没有答案