gpt4 book ai didi

javascript - 获取meteor中的数据库版本

转载 作者:行者123 更新时间:2023-12-03 07:06:45 24 4
gpt4 key购买 nike

我有时会连接到 3.2 数据库,有时会连接到 2.7 数据库,具体取决于部署。有时,有一个功能在 3.2 上可用,但在 2.7 上不可用,所以我需要检查版本。这是我尝试过的,based on the docs .

> Meteor.users.rawDatabase().version()
TypeError: Object [object Object] has no method 'version'

如何获取meteor中的数据库版本?

最佳答案

您可以尝试使用RemoteCollectionDriver访问底层 node.js native driver然后使用admin数据库进行操作:

const adminDb = MongoInternals.defaultRemoteCollectionDriver().mongo.db.admin()
adminDb.buildInfo( (err, info) => { console.log(info.version); })

关于javascript - 获取meteor中的数据库版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36795661/

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