0

MongoDBを使用してビデオ/画像を保存するためのサンプル例を探していますGridFS私はこの公式サイトに出くわし、以下のコードスニペットに従いました

var MongoClient = require('mongodb').MongoClient,
Grid = mongo.Grid;
// Connect to the db
MongoClient.connect("mongodb://localhost:27017/exampleDb", function(err, db) {
  if(err) return console.dir(err);
  var grid = new Grid(db, 'fs');
  var buffer = new Buffer("Hello world");
  grid.put(buffer, {metadata:{category:'text'}, content_type: 'text'}, function(err, fileInfo) {
    if(!err) {
      console.log("Finished writing file to Mongo");
    }
  });
});

コードを実行すると、以下のエラーが発生します

Grid = mongo.Grid;
       ^
ReferenceError: mongo is not defined
at Object.<anonymous> (D:\Rahul\Nodejs\Fileupload\fileupload\Samples\grid-fs
\mongo.js:3:8)
at Module._compile (module.js:434:26)
at Object.Module._extensions..js (module.js:452:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:475:10)
at startup (node.js:117:18)
at node.js:951:3

NodejsでGridFSを使用してMongoDBにファイルを保存する方法のリンクを共有してください。

編集1

私はそれを機能させるために多くのことを試みましたが、最終的にインターフェースGridが削除されてMongodb 2.1いることを知りました。これは機能しませんが、グリッドの置き換えに関するドキュメントはありません。今、どれを使用するかについて明確な考えがありません。つまりGridStore、、、GridFSBucketなど

このドキュメントは誤解を招くものですか?

4

1 に答える 1

1

あなたが望むものは次のとおりだと思います:

var mongo = require('mongodb');

オフのものrequire('mongodb'}

var Db = require('mongodb').Db,
    MongoClient = require('mongodb').MongoClient,
    Server = require('mongodb').Server,
    ReplSetServers = require('mongodb').ReplSetServers,
    ObjectID = require('mongodb').ObjectID,
    Binary = require('mongodb').Binary,
    GridStore = require('mongodb').GridStore,
    Grid = require('mongodb').Grid,
    Code = require('mongodb').Code,
    BSON = require('mongodb').pure().BSON,
    assert = require('assert');

こちらのドキュメントから。

于 2016-04-11T15:38:55.100 に答える