gpt4 book ai didi

node.js - 如何使用node在mongodb中插入长值?

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:58 24 4
gpt4 key购买 nike

我需要在 mongo 中插入一个属性的 Long 值。

  var sequences = this.db.collection('sequences');
sequences.insert( {
_id: "TEST_SEQ",
value: 1
}, done);

但是这是将值作为整数插入,如何将其变为Long?

最佳答案

使用 mongodb Long 类。像这样的东西。

const Long = require('mongodb').Long;

var sequences = this.db.collection('sequences');
sequences.insert( {
_id: "TEST_SEQ",
value: Long.fromInt(1)
}, done);

看看here了解更多详情

Mongo-db 有默认类型,它给出值,这就是它作为整数插入的原因。

关于node.js - 如何使用node在mongodb中插入长值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27167569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com