0

我只想从这个文本文件中获取数据,稍微解析一下,然后把它扔到几个数组中。aJax 的异步特性(我什至不知道我正在使用...?)意味着在我尝试访问它之前,该数组仍在被填充。这似乎对我造成了完全无用的情况,因为我需要在用户访问站点期间的不同时间访问数组。有任何想法吗?

var words = new Array();
var sylls = new Array();
var csv_file = new Array(); // for word arrays

$(document).ready(function(){
    readWords( addWords );
});

function readWords( process ) {
        $.get('terms.csv', function(data){
                csv_file = data.split('\n');
                    // csv file is now in an array, split into seperate word array and syllable array
                    for (var i = 0; i < csv_file.length; i++) {
                        var both = csv_file[i].split(',');  // split at the comma
                        words[i] = both[0]; // populate word array
                        sylls[i] = both[1]; // populate syllable array
                        //put_word(words[i], sylls[i]);

                    };

            });   
    process(words, sylls);
}

function addWords(w, ss){
    console.log(w);
}

这一切最终都返回一个空数组。

编辑——解决方案:

我不确定为什么以前没有人建议过这个,但是对于那些像我一样对 ajax 感到沮丧的人来说,这是一个简单的解决方案!

var words = new Array();
var sylls = new Array();
var csv_file = new Array(); // for word arrays

$(document).ready(function(){
    get_words();

});

function get_words() {


        $.get('terms.csv', function(data){
            //async: false;
            csv_file = data.split('\n');
                // csv file is now in an array, split into seperate word array and syllable array
                for (var i = 0; i < csv_file.length; i++) {
                    var both = csv_file[i].split(',');  // split at the comma
                    words[i] = both[0]; // populate word array
                    sylls[i] = both[1]; // populate syllable array
                    //put_word(words[i], sylls[i]);
                };
            })
        .done(function() {
            // once it's done DO THIS STUFF
        });

}
4

1 回答 1

1

看起来像是process(words, sylls);$.get()街区之外。.$.get()是一个异步(默认情况下)请求,因此当您的程序调用它时,它会立即返回并执行process()而无需必要的数据。只需process()在块结束之前添加调用$.get()

于 2013-10-02T21:39:37.307 回答