标签: sql ruby-on-rails json database
我有一个带有一些属性的模型。
如果我以JSON格式显示所有记录
respond_with(Group.all)
显示具有相应属性名称的所有记录。我想显示除一些列记录以外的所有记录。所以,我用了
@groupDetails = Group.pluck(:id,:name,:created_at) respond_with(@groupDetails)
它显示了所有指定的属性记录,但我希望所有这些记录都具有相应的属性名称。
答案 0 :(得分:1)
你想要select method:
Group.select(:id,:name,:created_at)