【发布时间】:2016-09-01 09:29:46
【问题描述】:
这是我的模型:
class Post
include Mongoid::Document
include Mongoid::Timestamps
belongs_to :user, optional: true
has_many :comments
field :title, type: String
field :body, type: String
validates :title, presence: true
validates :body, presence: true
end
当我在正文字段上收到验证错误时,我得到“正文不能为空白”,我想在模型中将其更改为“内容不能为空白”。如何更改字段标签?
【问题讨论】:
标签: ruby-on-rails mongoid