1

导轨宝石。我已将活动管理 gem 添加到应用程序。

当我在活动管理员中将图像添加到产品模型时,它会被上传,但是当我调用模型时,图像属性看起来像 ember 检查器中的 [Object Object]。

如何显示图像或获取图像 url

我的产品序列化器

class ProductSerializer < ActiveModel::Serializer
  attributes :id, :name, :description , :image
end

我的 ember 产品模型

MyApp.Product = DS.Model.extend({
  name: DS.attr('string'),
  description: DS.attr('string'),
  image: DS.attr('string'),
  category: DS.belongsTo('category'),
});
4

0 回答 0