如何全面访问AJAX定义的变量?

时间:2016-05-19 19:14:14

标签: javascript ajax html5

我在AJAX成功函数中创建了一个变量,我想在该函数之外用于另一个AJAX调用。我试图用本地存储存储它,然后使用它但无法访问变量。有关如何访问它的任何想法?

以下是代码: -

var c_id = 110;
    $.ajax({
        type : "POST",
        dataType : 'json',
        data : {'id':c_id},
        url : 'http://127.0.0.1/Student Back End/sbms.php',
        success : function(data){
            var quant_presta = data.quantity;
            localStorage.setItem('Presta_Quant',quant_presta);
            console.log(localStorage.getItem('Presta_Quant'));
        },
        error : function(data){
            //console.log(data.name.quantity);
            $('#fetch_error').show();
            $('#fetch_error').fadeOut(5000);
        }
    });

1 个答案:

答案 0 :(得分:1)

显示代码..

$.ajax({
 url : '',
 success: function(data){
  myFunction(data);
 }
});

function myFunction(data){
  // do the processing here. You can access this from all ajax calls.
}