Ruby China 里的一段代码不太理解
# PostsController#show
def show
@post = Post.find(params[:id])
@post.hits.incr
set_seo_meta("#{@post.title}")
drop_breadcrumb("文章")
drop_breadcrumb t("common.read")
end
我看 Ruby China 的链接是这样的方式: http://ruby-china.org/topics/3707
但是 mongodb 的 document 的 id 不是这样的么:
{ "_id" : ObjectId("4d3ed089fb60ab534684b7e9") }
看了一下源代码没发现是怎么样对应起来的,而且 Ruby China 的代码跟使用 ActiveRecord 的代码基本上没有什么不同。