开发者问题收集

如何格式化对象数组中的值日期

2019-07-05
8763

我有一个对象数组:

var exerciseLog = [{“date”:“2019-07-02T21:18:48.946Z”,“description”:“pull ups”,“duration”:“90”},{“date”:“2019-07-02T21:22:30.395Z”,“description”:“push ups”,“duration”:“90”},{“date”:“2019-07-02T22:19:37.790Z”,“description”:“push ups”,“duration”:“50”}]

我想要格式化日期以排除时间,以便日期显示为“YYYY-MM-DD”或“YYYY/MM/DD”。

我试过 map、forEach、slice、splice。

exerciseLog = exerciseLog.forEach(x => x.date.toLocaleDateString());

在代码的相关部分不起作用:

app.get("/api/exercise/log", function (req, res) {
    var userId = req.query.userId; 
    var from = req.query.from ? new Date(req.query.from) : new Date("1970-01-01");
    var to = req.query.to ? new Date(req.query.to) : new Date();

    User.findById(userId, function (err, doc) {
      if (!doc) {
        res.send({ "error": "userId not found" });
      } else {
        var exerciseLog = doc.exercises.sort((a, b) => a.date.getTime() - b.date.getTime())
          .filter(x => x.date >= from && x.date <= to);
        var limit = !isNaN(req.query.limit) ? req.query.limit : exerciseLog.length;
        exerciseLog = exerciseLog.slice(0, limit);
        exerciseLog = exerciseLog.forEach(x => x.date.toLocaleDateString());
        res.send({ "username": doc.username, "Exercise Count": exerciseLog.length, "Exercise Log": exerciseLog });
      }
    });
  });

错误:

events.js:160
6:59 PM
      throw er; // Unhandled 'error' event
6:59 PM
      ^
6:59 PM
6:59 PM
TypeError: Cannot read property 'length' of undefined
6:59 PM
Jump to
at /app/server.js:138:77
6:59 PM
    at /rbd/pnpm-volume/52232b84-c31b-4266-9261-f25b6365dff7/node_modules/.registry.npmjs.org/mongoose/5.6.2/node_modules/mongoose/lib/model.js:4846:16
6:59 PM
    at /rbd/pnpm-volume/52232b84-c31b-4266-9261-f25b6365dff7/node_modules/.registry.npmjs.org/mongoose/5.6.2/node_modules/mongoose/lib/query.js:4283:12
6:59 PM
    at process.nextTick (/rbd/pnpm-volume/52232b84-c31b-4266-9261-f25b6365dff7/node_modules/.registry.npmjs.org/mongoose/5.6.2/node_modules/mongoose/lib/query.js:2776:28)
6:59 PM
    at _combinedTickCallback (internal/process/next_tick.js:73:7)
6:59 PM
    at process._tickCallback (internal/process/next_tick.js:104:9)

指向此行:

var limit = !isNaN(req.query.limit) ? req.query.limit : exerciseLog.length;

但如果我删除带有 forEach 行的代码,则不会出现任何错误。

完整代码 https://glitch.com/edit/#!/swamp-liquid?path=server.js:138:53 .

3个回答

您的错误是因为您将 Array.prototype.forEach 的返回值分配给 exerciseLog

Array.prototype.forEach 不返回任何内容。

您想使用 Array.prototype.map

exerciseLog = exerciseLog.map(x => x.date.toLocaleDateString());

BlueWater86
2019-07-05

@Miles Grover 和 @BlueWater86 感谢你们的帮助。我之前尝试过 map,但没有成功,但现在成功了。

exerciseLog = exerciseLog.map(x => x.date.toLocaleDateString());

仅返回格式化的日期,因此我必须这样做才能保留其余的对象信息:

exerciseLog = exerciseLog.map(x => "description: " + x.description + ", duration: " + x.duration + ", date: " + x.date.toLocaleDateString());
eoja
2019-07-05
exerciseLog = exerciseLog.forEach(x => x.date.toLocaleDateString());

forEach() 不返回任何内容,因此您将 exerciseLog 设置为 null 或未定义。如果您改用 map() ,该行将根据您传递给 map() 的函数中返回的内容将 exerciseLog 设置为新数组。

下一个问题是,原始代码片段中的引号是花引号 - 不确定它从何而来,但除非它们是单引号或双直引号,否则什么都不会起作用。

我认为最后一个问题是 x.date 已经是日期字符串,而不是 Date 对象,因此 toLocaleDateString() 对其不起作用。您可能只需使用 x.date ,或者如果您确实需要将日期转换为不同的语言环境,您可以执行类似 new Date(x.date).toLocaleDateString() 的操作。

Miles Grover
2019-07-05