我正在尝试使用 Rails 和 Grape 构建一组 API。用户模型如下:
{
"email": "foo@bar.com"
"name": "Foo Bar"
}
现在,在 API 表示级别,我希望用户对象如下:
{
"object": "User"
"email": "foo@bar.com"
"name": "Foo Bar"
}
由于我使用 Grape Entity gem 来公开我的模型,因此问题实际上是:如何向 Grape Entity 类添加额外的 CONSTANT-value 属性?感谢你的帮助!