作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 ALASQL 将结果查询设置为数组或 JSON 对象:
var resdata2 = [ { A: "test", B: "testB" } ]; // Destination array
// Select first and second column values from xlxs
alasql('select A,B into ? from xlsx("gohan.xlsx")', [resdata2]);
console.log(resdata2); // Shows one object for xlsx line!
console.log(resdata2.length); // Shows length of 1 only
$.each(resdata2,function(idx, obj) {
console.log(obj.A); // Shows only 'test'
console.log(obj.B); // Shows only 'testB'
});
电子表格有 18 行,出现在第一个 console.log()
中,但是在第二个 console.log()
和每个函数中,它仅显示第一个行“Test”
和“testB”
。
有什么想法可以显示所有行吗?
最佳答案
可能你需要使用回调接口(interface):
var resdata2;
alasql('select A,B from xlsx("gohan.xlsx")', [], function(data) {
resdata2 = data;
});
这里需要使用AlaSQL的回调接口(interface),因为XLSX()函数是异步的。
关于javascript - 选择 INTO 数组或对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33894953/
我是一名优秀的程序员,十分优秀!