5

我需要 CouchApp 中“用户在线”统计信息的服务器时间。我使用 jquery.couch.js 并且希望有一个 url,例如 /db/_design/app/time - 这给我一个时间戳。我如何意识到这一点?

4

1 回答 1

5

一个 show 函数可以做到这一点:

function(doc, req) {
    // _design/myapp/_show/now

    // First version possibly incompatible with some spidermonkey versions.
    //var now = new Date();
    var now = new Date().getTime();
    var output = JSON.parse(JSON.stringify(now)) + "\n";

    return { code: 200
           , headers: { "Content-Type": "text/plain"
                      }
           , body:output
           };
}

服务器还包含Date您可能想要使用的标头。

$ curl -D- http://localhost:5984
HTTP/1.1 200 OK
Server: CouchDB/1.1.0 (Erlang OTP/R14B)
Date: Fri, 27 May 2011 00:28:31 GMT
Content-Type: text/plain;charset=utf-8
Content-Length: 40
Cache-Control: must-revalidate

{"couchdb":"Welcome","version":"1.1.0"}
于 2011-05-27T00:29:24.707 回答