假设我有这种类似的CSV文件:
age 1
gender 2
location 3
address 4
如何从第一列中检索所有字符串?感谢。
答案 0 :(得分:2)
拨打电话:
$.ajax({
url: '...',
success: function(response) {
readCSVFile(response);
}
});
处理来自ajax电话的回复。
function readCSVFile(response) {
var lines = response.split("\n");
for (var i = 0; i < lines.length; i++) {
var _firstColumn = lines[i].split(";")[0]; //First column (Split on the separator!)
//Do your stuff
}
};