0

在我的应用程序中,我将 node.js 与 coucdhDB 数据库一起使用。现在我想通过给定的限制获取数据,如果用户提到开始限制为 10,结束限制为 20 意味着我想要获取 10 到 20 之间的数据。如何我这样做。

4

1 回答 1

0

这是一个应该在面向公众的 CouchDB for NPM 数据上按原样运行的示例。请原谅糟糕的代码以及糟糕的参数检查和错误处理,但你会明白的。由于此示例 CouchDb 视图使用文本包名称,我没有做您的数字示例,而是获取名称在“ya”和“yaa”之间的包,我将使用以下内容访问这个面向公众的数据库:

http://isaacs.iriscouch.com/downloads/_design/app/_view/pkg?group_level=2&start_key=%5B%22ya%22%5D&end_key=%5B%22yaa%22,%7B%7D%5D

然后使用下面的代码对我的节点服务器等效的是:

http://yourapi.goeshere.xxx:3000/rangetest/ya-yaa

使用以下代码:

var express = require('express')
  , cradle = require('cradle')
  , routes = require('./routes')
  , http = require('http')
  , path = require('path');

var app = express();

app.configure(function(){
  app.set('port', process.env.PORT || 3000);
  app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(app.router);
});

app.get('/rangetest/:from-:to', function(req, res) {
    console.log('entering range test');
    var theFrom = req.params.from;
    var theTo = req.params.to;
    console.log('range sent was ' + theFrom + " to : " + theTo);


    var testConn = new(cradle.Connection)('http://isaacs.iriscouch.com', {
        cache: true,
        raw: false
    });

    var testDb = testConn.database('downloads');
    var testParams = "_design/app/_view/pkg?group_level=2&start_key=%5B%22" + theFrom + 
        "%22%5D&end_key=%5B%22" + theTo + "%22,%7B%7D%5D";
    testDb.get(testParams, function (err, testResult) {
        if (err)
        {
            console.log(err);
            res.json(500, err);
        } else {
            res.json(testResult);
        }
    });

 });
于 2013-03-04T21:22:37.710 回答