我收到了错误:
<NoMethodError: undefined method `read_attribute_for_serialization' for #<Record::ActiveRecord_Relation:0x007faa7cfe3318>>
错误发生在摘录的第三行。
def artist
@records = Record.where('artist_id = ' + params[:artist_id])
render :json => @records, serializer: RecordSummarySerializer
end
这是控制器RecordsContrller的备用序列化程序。另一个,'RecordsSerializer,工作正常。
搜索此错误会带来一些解决方案。有些人不清楚添加代码的位置。另一位建议补充说:
alias :read_attribute_for_serialization :send
到发生错误的类。它对我不起作用。我还查看了gem文档。我找到了使用序列化器的一个例子:很明显,还需要任何其他代码。
我正在使用Ruby 2.3.0和Rails 5.0.0。
class RecordsController < ApplicationController
...
def index
@records = Record.order('title')
render :json => @records
end
def artist
@records = Record.where('artist_id = ' + params[:artist_id])
render :json => @records, serializer: RecordSummarySerializer
end
...
end
class Record < ActiveRecord::Base
belongs_to :artist
belongs_to :label
belongs_to :style
has_many :tracks
has_many :credits
validates :title, presence: true
validates :catalog, presence: true
end
include ActiveModel::Serialization
class RecordSummarySerializer < ActiveModel::Serializer
attributes :id, :artist_id, :label_id, :style_id, :title, :catalog,
:recording_date, :penguin, :category
end
class RecordSerializer < ActiveModel::Serializer
attributes :id, :artist_id, :label_id, :style_id, :title, :catalog, :alternate_catalog,
:recording_date, :notes, :penguin, :category
has_one :artist
has_many :tracks
end
create_table "records", unsigned: true, force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t|
t.string "title", limit: 50
t.string "catalog", limit: 20, null: false
t.string "alternate_catalog", limit: 20
t.integer "artist_id", unsigned: true
t.integer "label_id", null: false, unsigned: true
t.integer "style_id", unsigned: true
t.datetime "recording_date"
t.text "notes", limit: 4294967295
t.string "penguin", limit: 50
t.string "category", limit: 50, default: "jazz"
t.index ["artist_id"], name: "RecordHasOneArtist", using: :btree
t.index ["label_id"], name: "RecordHasOneLabel", using: :btree
t.index ["style_id"], name: "RecordHasOneStyle", using: :btree
end
我刚注意到,主键id没有出现在架构中。当我查看表格结构时,我在Sequel Pro中看到它。
我添加了@JMazzy建议的代码。我现在得到错误:
<NoMethodError: undefined method `id' for #<Record::ActiveRecord_Relation:0x007faa8005a9d8>\nDid you mean? ids>
答案 0 :(得分:40)
我遇到了同样的错误,发现控制器中的serializer:
更改为each_serializer:
解决了这个问题。
<强>控制器强>
class RecordsController < ApplicationController
...
def artist
@records = Record.where('artist_id = ' + params[:artist_id])
render :json => @records, each_serializer: RecordSummarySerializer
end
...
end
record_summary_serializer.rb - 可以删除包含行
class RecordSummarySerializer < ActiveModel::Serializer
attributes :id, :artist_id, :label_id, :style_id, :title, :catalog,
:recording_date, :penguin, :category
end
来自active_model_serializers documentation。
更新了链接。谢谢Lowryder
答案 1 :(得分:16)
您需要将include ActiveModel::Serialization
添加到模型中。 ActiveModel中默认不包括扩展序列化。请参阅this answer on GitHub。
答案 2 :(得分:5)
<NoMethodError: undefined method `read_attribute_for_serialization'
当序列化的对象为nil
时,可能会发生此错误。考虑打印调试要序列化的对象,以检查它是否为nil
:
def show
product = Product.find_by(id: params[:id])
p "Is product nil? #{product.nil?}"
render json: product
end
如果对象(上面代码段中的product
)为nil
,那么由于NoMethodError
被调用,您可能会看到上面报告的nil.read_attribute_for_serialization
。
答案 3 :(得分:1)
我通过将自定义序列化程序更改为RecordDetailSerializer并从控制器中的show方法调用它来解决我的问题。当我删除包含@JMazzy建议它仍然有效。还有一些棘手的事情。如果我在索引方法中使用自定义方法:
def index
@records = Record.order('title')
render :json => @records, serializer: RecordDetailSerializer
end
我收到上面问题底部显示的遗失ID的错误。但是,当我在show方法中使用它时:
def show
@record = Record.find(params[:id])
render :json => @record, serializer: RecordDetailSerializer
end
如果我删除问题字段,列表中的下一个字段就成了问题。这对我来说不再是一个问题,因为我总是可以将自定义序列化程序限制为单个元素。
答案 4 :(得分:0)
添加serializable_hash
并直接初始化构造函数,即
def artist
@records = Record.where('artist_id', params[:artist_id])
render json: RecordSummarySerializer.new(@records).serializable_hash
end
...为我解决了。