1

我有工作脚本,用于存储我在 mongoDB 中创建的 html 表单。它工作得很棒。但是,我无法搜索我放在 mongo 中的任何数据,因为我没有索引。

我意识到我可以从控制台创建索引,但是为了让我的系统按我们需要的方式工作,我真的需要在存储数据时创建索引。所以,我需要将代码放在实际使用 node.js 或直接创建代码的 javascript 中)。

我尝试了以下 javascript(使用 node.js),但它似乎不起作用。

app.post('/:db/:collection/formSubmit', function(req, res) {
    var json = form2json.transform(req.rawBody);    
    var db = new mongo.Db(req.params.db, new mongo.Server(config.db.host, config.db.port,mongoOptions ));
        db.open(function(err, db) {
        db.authenticate(config.db.username, config.db.password, function () {
        db.collection(req.params.collection, function(err, collection) {
      collection.insert(Array.isArray(json) ? json[0] : json, function(err, docs) {
    res.header('Content-Type', 'application/json');
    if(req.is('application/xml')) {
    res.send('<ok>1<ok>')
    } else {
    es.send(json, 201);       
    } 
// my attempt to create an index while posting a form follows
    db.core.ensureIndex( { "document": 1 } )    
        db.close();
        });
    });
  });
});

});

4

1 回答 1

0

您需要调用ensureIndex集合:

collection.ensureIndex({ "document": 1 }, function (err, indexName) {    
    db.close();
});
于 2013-09-21T05:05:12.610 回答