Rails 4.0.4 w / Postgres
Ruby 2.1.1
我正在使用具有JSON类型属性的模型。
此处是迁移
def change
create_table :my_models do |t|
t.json :my_json_attribute, :null => false
t.timestamps
end
end
我希望在数据库中保存或更新之前在表单中验证此属性。
今天我收到一个令人讨厌的JSON解析器错误(JSON :: ParserError)而不是我的表单上的友好消息..我故意在我的表单中给出一个不正确的JSON输入来检查验证是否有效以及我是否友好要求验证JSON字符串的消息...但我甚至不确定如何检查是否调用了attribute_in_json_format
在我的模型课中,我有类似的东西:
class MyModel < ActiveRecord::Base
validate_presence_of :my_json_attribute
validate :attribute_in_json_format
protected
def attribute_in_json_format
errors[:base] << "not in JSON format" unless my_json_attribute.is_json?
end
end
创建了一个初始化器string.rb:
require 'json'
class String
def is_json?
begin
!!JSON.parse(self)
rescue
false
end
end
end
我没有取得任何成功......我仍然会去MultiJson :: ParseError而不是通过验证。
有什么建议吗?
中汲取灵感答案 0 :(得分:2)
也许使用store_accessor
会有所帮助。
class MyModel < ActiveRecord::Base
store_accessor :my_jason_attribute
validate_presence_of :my_json_attribute
...
这是documentation。检查注意:
注意 - 如果您使用的是PostgreSQL特定列,例如hstore或 json不需要商店提供的序列化。只是 使用store_accessor来生成访问器方法。意识到 这些列使用字符串键控哈希并且不允许访问 使用符号。
希望这有帮助。
答案 1 :(得分:2)
我有点晚了,但我认为你的方法是正确的方向。但是,您不需要对String
类进行猴子修补。你可以这样做:
validate :attribute_in_json_format
private
def attribute_in_json_format
JSON.parse(my_json_attribute.to_s)
rescue JSON::ParserError
errors[:base] << "not in JSON format"
end