gmaps4rails 在验证存在设置为 true 之前进行验证
当我提交空地址字段时,遇到以下错误。
LocationsController#create 中的 Gmaps4rails::GeocodeInvalidQuery 你必须提供一个地址
我的模型
class Location < ActiveRecord::Base
validates :address, :presence => true
acts_as_gmappable
def gmaps4rails_address
address
end
def gmaps4rails_infowindow
"<h4>#{name}</h4>" << "<h4>#{address}</h4>"
end
end
问题为什么它从不验证地址字段是否存在并直接抛出错误?
I encountered the following error when I submit an empty address field.
Gmaps4rails::GeocodeInvalidQuery in LocationsController#create
You must provide an address
My Model
class Location < ActiveRecord::Base
validates :address, :presence => true
acts_as_gmappable
def gmaps4rails_address
address
end
def gmaps4rails_infowindow
"<h4>#{name}</h4>" << "<h4>#{address}</h4>"
end
end
The question why it never validates the address field presence or not and directly throw error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
0.8.7
中修复,现在通常会向地址字段添加错误。Gmaps4rails 已经检查地址是否为空或 nil。它是此处描述的选项的一部分。
例如,您可以这样设置自己的验证消息:
Fixed in
0.8.7
it will now normally add error to the address field.Gmaps4rails already checks whether or not the address is empty or nil. It's part of the options described here.
You can, for instance, set your own validation message this way: