0
我使用此代碼將模型轉換爲json。如果我嘗試使用包括第二級是這樣的:包括to_json的第二級
p = Product.includes({ :variants => { :stocks => :size } }).where(:id => params[:id]).first
render :json => p.variants.to_json(:include => { :stocks => { :include => :size } })
我收到此錯誤:
undefined method `macro' for nil:NilClass
我怎樣才能解決呢?