ajax调用

时间:2015-09-18 10:20:11

标签: javascript ajax

当具有新价格的ajax指南针时,您可以看到它的成功功能。

但是如果你想看到ajax函数new_prices下的值是undefined ??

这怎么可能?

var new_prices;

         $.ajax({
            type: "POST",
            url: "/spares/admin/getKoersBetweenDate/",
            dataType: "json",
            data: "valutaId=" + valutaId + "&datum=" + date_added,
            success: function(response){
                  var new_price = price_ps / response.valuta[0].koers;
                   var total = new_price;
                   new_prices = total;

            }
        });
         console.log(new_prices);

0 个答案:

没有答案