我正在使用Ruby on Rails开发API。我已为posts_controller.rb
创建了一些规范,并且在运行规范时出现此错误
SystemStackError: stack level too deep
./app/controllers/api/v1/posts_controller.rb:10:in `show'
./spec/controllers/api/v1/posts_controller_spec.rb:8:in `block (3 levels) in <top (required)>'
这是我的posts_controller_spec.rb
require 'spec_helper'
describe API::V1::PostsController do
describe "GET #show" do
before(:each) do
@post = FactoryGirl.create :post
get :show, id: @post.id
end
it "returns the information about a post on a hash" do
post_response = json_response[:post]
expect(post_response[:description]).to eql @post.description
end
it "has the user as a embeded object" do
post_response = json_response[:post]
expect(post_response[:user][:email]).to eql @post.user.email
end
it { expect(response.status).to eql 200 }
end
.
.
.
这是我的posts_controller.rb
class API::V1::PostsController < ApplicationController
respond_to :json
def show
respond_with Post.find(params[:id])
end
.
.
.
有人有想法解决这个问题吗?
我意识到这是导致错误的线,任何人都知道为什么?在post_serializer.rb
文件中我有这个
class PostSerializer < ActiveModel::Serializer
attributes :id, :description, :price, :published
has_one :user # this is the line !!!
end
如果我删除此行,问题将得到解决,但有人知道原因吗?
答案 0 :(得分:1)
您的序列化程序中有一个循环引用:帖子尝试序列化其用户,但用户序列化程序序列化用户帖子,然后序列化用户等。
在active_model_serializers 0.9.x中,这个问题有一个很长的github issue。问题显然在0.10中得到修复,尽管这似乎与rails 3.x不兼容
一种常见的技术似乎是拥有2个版本的用户序列化程序:一个包含帖子,另一个不包含帖子。