0

我正在使用 ruby​​ gem CarrierWave 来处理我的 rails 应用程序上的图像,这是一个移动后端 API。有没有办法将图像 url 和 thumb url 直接存储在父对象上?

这是默认行为,显示在 post 对象的 json 中。注意嵌套的 JSON:

{
created_at: "2012-11-17T18:24:04Z",
description: "this is the content",
id: 6,
user_id: 1,
picture: {
url: "/uploads/entry/picture/6/wtf_llama.jpeg",
  thumb: {
    url: "/uploads/entry/picture/6/thumb_wtf_llama.jpeg"
    }
  },
updated_at: "2012-11-26T08:16:43Z"
}

我想看到的:

{
created_at: "2012-11-17T18:24:04Z",
description: "this is the content",
id: 6,
user_id: 1,
picture_url = "/uploads/entry/picture/6/wtf_llama.jpeg",
thumb_url = "/uploads/entry/picture/6/thumb_wtf_llama.jpeg"
updated_at: "2012-11-26T08:16:43Z"
}

这可能吗?

4

1 回答 1

2

为什么将这些路径存储在模型中?改进响应(视图或控制器),而不是持久层(模型)。我相信使用as_json最容易实现。添加picture_url方法来建模或将其他条目合并到最终哈希中。

于 2012-11-27T09:26:30.193 回答