0

使用cheerio,我设法抓取了一个PHP生成的表,其中包含一列日期、位置等。由于行数是可变的,我选择使用 .map() 遍历每一行,设置匹配的起始事件日期 (startDate) 与提供的 CSS 选择器。上述过程似乎运行良好,因为当我调用 console.log(startDate) 时,我收到以下输出。但是,似乎该进程每次移动到下一行时都会创建一个数组,每次都附加一个额外的日期。如何将变量设置为仅数组 startDate 中的最后一个数组?

[ '03/18/2014' ]
[ '03/18/2014', '03/01/2014' ]
[ '03/18/2014', '03/01/2014', '02/15/2014' ]
[ '03/18/2014', '03/01/2014', '02/15/2014', '01/31/2014' ]
[ '03/18/2014',
  '03/01/2014',
  '02/15/2014',
  '01/31/2014',
  '01/17/2014' ]
[ '03/18/2014',
  '03/01/2014',
  '02/15/2014',
  '01/31/2014',
  '01/17/2014',
  '12/06/2013' ]
[ '03/18/2014',
  '03/01/2014',
  '02/15/2014',
  '01/31/2014',
  '01/17/2014',
  '12/06/2013',
  '11/16/2013' ]

所以 console.log(newArray) 的期望输出将是:

[ '03/18/2014',
  '03/01/2014',
  '02/15/2014',
  '01/31/2014',
  '01/17/2014',
  '12/06/2013',
  '11/16/2013' ]
4

1 回答 1

1

如果 startDate 是一个数组,您应该能够通过使用索引来获取数组中的最后一项,如下所示:

var lastStartDate = startDate[startDate.length-1]; //now lastStartDate contains the last item in the array
于 2014-04-17T22:43:42.293 回答