1

我有一个将记录吐到网页上的 MongoDB

require 'mongo'
require 'json'

connection = Mongo::Connection.new
db = connection.db("salemDB")
db = Mongo::Connection.new.db("salemDB")
newsCollection = db["news"]

require 'sinatra'
set:port, 2222
get '/' do
    redirect 'index.html'
end

get "/checkMail" do
  newsCollection.find_one({}, {}).to_a.to_json
end

get "/:id" do
 newsCollection.find("_id" => params[:id]).to_a.to_json
end

/checkmail 输出这个

(为阅读乐趣而格式化)

[
   [
      "_id",
      {
         "$oid":"50880c8564a15e2631000001"
      }
   ],
   [
      "date",
      "2012-10-24T17:42:54+02:00"
   ],
   [
      "subject",
      "This is a piece of news"
   ]
]

/50880c8564a15e2631000001 输出这个

[]

为什么它不把我的对象还给我?

4

1 回答 1

3

那是因为 id 实际上不是 string 或 Integer 它是 an BSON::ObjectId,所以您必须使用其中一个进行查询。

这应该工作

newsCollection.find("_id" => BSON::ObjectId(params[:id])).to_a.to_json
于 2012-11-01T21:14:40.337 回答