【发布时间】:2011-09-09 18:33:48
【问题描述】:
我正在阅读使用 mongodb 的 rails 3 教程
我看到了这样的东西
# Note this: ids are of class ObjectId.
key :user_id, ObjectId
timestamps!
感叹号是什么意思??? 谢谢。
class Story
include MongoMapper::Document
key :title, String
key :url, String
key :slug, String
key :voters, Array
key :votes, Integer, :default => 0
key :relevance, Integer, :default => 0
# Cached values.
key :comment_count, Integer, :default => 0
key :username, String
# Note this: ids are of class ObjectId.
key :user_id, ObjectId
timestamps!
# Relationships.
belongs_to :user
# Validations.
validates_presence_of :title, :url, :user_id
end
【问题讨论】:
标签: ruby-on-rails-3 mongodb mongomapper