我正在使用Jquery CSV从 CSV 文件中获取数据。下面的代码返回一个对象
var check = $.get('../../../data/testers.csv'); //Fetches all the data and stores in variable
console.log(Object.keys(check)); //Here it tries to get all the keys, so I know what to call to get the required data
console.log(check); //Displays everything
这是上面显示的代码的输出:
正如我们所见,我的数据在 responseText 中:如何获取数据?我尝试了 check.responseText,但它不起作用。(因为 responseText 不是关键,我不应该得到价值。但只是试一试)
如何获取数据(responseText)?