我只想从这个文本文件中获取数据,稍微解析一下,然后把它扔到几个数组中。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
});
}