如何在 mongoose 中使用数字键
Posted
技术标签:
【中文标题】如何在 mongoose 中使用数字键【英文标题】:How to use numeric keys with mongoose 【发布时间】:2018-04-11 04:16:22 【问题描述】:有没有办法在 Mongoose 中对对象使用数字键?如:
timestamp_minute: ISODate(“2013-10-10T23:06:00.000Z”),
num_samples: 58,
total_samples: 108000000,
type: “memory_used”,
values:
0: 999999,
…
37: 1000000,
38: 1500000,
…
59: 1800000
当我通过 Mongoose 保存这样的内容时,值中的键存储为字符串(例如:“0”、“1”、...、“59”)。有没有办法让这些商店成为数字键?
【问题讨论】:
【参考方案1】:javascript 对象总是非数字键。如果你使用数字键,它将被转换为非数字或字符串。
【讨论】:
以上是关于如何在 mongoose 中使用数字键的主要内容,如果未能解决你的问题,请参考以下文章