我有一个 Javascript 函数getCartProducts()
,它通过 AJAX 获取一个 JSON 数组,使用$.post()
它返回一个值。我想让我的函数返回那个值,但我不知道该怎么做。
这是我的功能:
function getCartProduct(id){
$.post('core/ajax/getCartProduct.ajax.php', {id: parseInt(id)}, function(data){
var result = data;
});
return result;
}
我知道这行不通,因为变量结果只在$.post()
函数中有效,但我不知道如何弄清楚。