我正在尝试计算today()-脚本编辑器中的过去日期
我所有这些日期都已经在原始数据中
它们采用以下格式。
2018年10月31日 10/31/2018 2018年11月8日 11/11/2018 2018年11月18日 2018年11月18日
我尝试了这些代码进行计算
function getDate(){
var sheet = SpreadsheetApp.getActiveSheet();
var sh = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Lists')
var data = sh.getRange('A:A').getValues(); // read all data in the sheet
var sec=1000;
var min=60*sec;
var hour=60*min;
var day=24*hour;
var hd=new Date(data).valueOf();
var td=new Date().valueOf();
var diff=td-hd;
var days=Math.floor(diff/day);
// range.offset(rowOffset, columnOffset, numRows, numColumns)
Logger.log('Day_Difference:',days);
sh.getRange(1,1,data.length(),2).setValues(days); // write back to the sheet
}
但是我收到一条错误消息,
TypeError: Cannot call property length in object Dates,Wed Oct 31 2018 00:00:00 GMT-0400 (EDT),Wed Oct 31 2018
我应该为这些计算使用不同的格式吗?
答案 0 :(得分:1)
可以将日期转换为以毫秒为单位的时间戳记纪元,以使其变得更容易。
通常,在处理大量日期时,人们会使用moment
库,该库可在以下位置找到:https://github.com/moment/moment。但是,如果这是一个简单的场景,并且不要在日期周围编写大量代码,那只会做一个简单的脚本。
const dates = [
'10/31/2018',
'10/31/2018',
'11/8/2018',
'11/11/2018',
'11/18/2018',
'11/18/2018'
];
function dateDifference(a, b) {
const aEpoch = +new Date(a);
const bEpoch = +new Date(b);
const maxEpoch = Math.max(aEpoch, bEpoch);
const minEpoch = Math.min(aEpoch, bEpoch);
return maxEpoch - minEpoch;
}
console.log(dateDifference(dates[0], dates[1])); // Expect 0
console.log(dateDifference(dates[1], dates[2])); // Expect 694800000 milliseconds