标签: ruby-on-rails postgresql hstore
我正在使用hstore列:
add_column :my_table, :entities, :hstore
我在其中存储了数组地图:
{ likes: ['football','soccer'], post: [1,3] }
但是,当我从数据库加载它时,我将数组作为字符串而不是数组:
info.likes > "['football','soccer']"
有没有办法让它作为字符串数组返回,而不是作为字符串?