标签: ruby-on-rails select attributes return render
我正在构建一个Rails API,我想知道是否有办法返回我的对象的属性,但我不想返回所有属性。有没有办法防止返回某些属性?例如,我不想返回数据库ID或时间戳
Rails
度过愉快的一天。
答案 0 :(得分:2)
如何在对象属性上调用except: your_object.attributes.except('id')
except
your_object.attributes.except('id')
答案 1 :(得分:2)
使用ActiveModel :: Serializer,您可以指定在每个序列化程序的响应中添加哪些属性。
Refer