我尝试使用JS时刻更改日期。我如何制作data child[index-1].childEndDate = childStartDate -1

例如:

if child[1].childEndDate = 03/22/2019,
child[0].childStartDate = 03/21/2019


child[index-1].childEndDate = childStartDate -1不起作用。我认为childStartDate-与MomentJS搭配使用不正确

childAutoChangeData(start, end, child, index) {
    const childStartDate = moment(start);
    const childEndDate = moment(end);

    if (index > 0 && !end.isSame(child[index].childStartDate + 1)) {
        child[index - 1].childEndDate = start-1;
    }

    return child;
}

最佳答案

日期不能像数字一样减去。

基于Moment Docs,您可以使用.subtract()。它接受数字和字符串,例如1days

所以这样做:

child[index-1].childEndDate = moment(childStartDate)
                                  .subtract(1, "days")
                                  .format("MM/DD/YYYY");

08-25 15:36