获取对全局范围的HTTP响应

时间:2015-10-23 14:19:18

标签: javascript jquery

我想从get()方法获取响应值,以便在我的代码中使用其他地方。这是代码:

$.get('all-document-types', function( response ) {
    var data = [];
    $.each(response,function(index,value){
        data.push(value.document_type);
    });
    return data;
});

但是,如果我试图在回调函数之外访问它,我会得到一个未定义的变量。那么我怎样才能获得价值呢?

0 个答案:

没有答案