我有一个 Rails 控制器需要将一些数据写入我的 MongoDB。这就是它目前的样子。
def index
data = self.getCheckinData
dbCollection = self.getCheckinsCollection
dbCollection.insert(data)
render(:json => data[:_id].to_s())
end
protected
def getCheckinsCollection
connection = Mongo::Connection.new('192.168.1.2', 27017)
db = connection['local']
db.authenticate('arman', 'arman')
return db['checkins']
end
每个请求都可以通过 MongoDB 进行身份验证吗?