我有 2 个表格/模型:路径和问题。每个问题属于一个路径
我的问题.rb:
class Question < ActiveRecord::Base
belongs_to :path
end
我的路径.rb
class Path < ActiveRecord::Base
has_many :questions
end
一切正常
p = Path.last
Path.questions
返回我需要的所有内容,但我返回的是这样的 json 响应:
@path = Path.find_by_id(params[:id])
render :status=>200, :json => {:status => "success", :path => @path, :message => "Showing path"}
该答案当然不包括有关路径的问题。我必须更改哪些内容才能包含属于该路径的所有问题?我知道我可以添加 :path_questions => @path.questions 但是没有新的返回变量就没有办法包含问题吗?我希望我的意思很清楚。