我使用JavaScript从电子表格中获取数据并输出到html文件。它只检索我想要的最新输入。
网站将显示
"12/3/2016 12:49:10
"Katelynn Logan"
"more output"
"..."
and so on.
我的最终目标是让它完全像
一样"Date: Tested by: blahblah: other text:
12/03/2016 name string int or what
你明白了。现在它输出的每个单元格都低于前一个单元格。 有没有办法制作所需格式的模板,它会按照该格式的布局输出信息?
date: name: PH
current date billybob 7.6
then output to next line
等等。或者更好,
Column A B C
D E F
H I J
here是获取信息的地方。那里有多年的数据,所以我为漫长的向下滚动道歉
以下是输出它的代码。
var range = response.result;
var row = range.values[range.values.length-1];
// Print columns A and AO, which correspond to indices 0 and 40.
for(i=0; i<40; i++){ //
appendPre(row[i]);
}